本文整理汇总了PHP中pts_strings::remove_lines_containing方法的典型用法代码示例。如果您正苦于以下问题:PHP pts_strings::remove_lines_containing方法的具体用法?PHP pts_strings::remove_lines_containing怎么用?PHP pts_strings::remove_lines_containing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pts_strings
的用法示例。
在下文中一共展示了pts_strings::remove_lines_containing方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: cleanse_file
public static function cleanse_file(&$file, $name = false)
{
switch ($name) {
case 'mounts':
foreach (array('ecryptfs_cipher=', 'ecryptfs_sig=', 'ecryptfs_fnek_sig=') as $check) {
if (($x = stripos($file, $check)) !== false) {
$split_a = substr($file, 0, $x + strlen($check));
$y = strlen($file);
foreach (array(',', ' ', '&', PHP_EOL) as $next) {
if (($z = stripos($file, $next, $x + strlen($check))) !== false && $z < $y) {
$y = $z;
}
}
$file = $split_a . 'XXXX' . substr($file, $y);
}
}
break;
default:
$file = pts_strings::remove_lines_containing($file, array('Serial N', 'S/N', 'Serial #', 'serial:', 'serial='));
break;
}
}