sidspears/string-search

在文件中查找子字符串

v1.0.1 2018-11-18 17:17 UTC

This package is auto-updated.

Last update: 2024-09-19 10:38:44 UTC


README

composer require sidspears/string-search

测试

安装PHPUnit

composer require --dev phpunit/phpunit ^7

运行测试

./vendor/bin/phpunit --bootstrap vendor/autoload.php vendor/sidspears/string-search/tests/

使用示例

<?php
require_once('vendor/autoload.php');
use SidSpears\StringSearcher\StringSearcher;

$stringSearcher = new StringSearcher('config.yaml');
$result = $stringSearcher->findStringAndPosition('file.txt', 'textToFind');

print_r($result);