我期待從分隔符中提取php中的內容。例如:如何從分隔符中提取內容在PHP
content useless
<--------->
Content to get
content to get
content to get
<--------->
content useles
content useless
<--------->
Content to get
content to get
content to get
<--------->
content useless
<--------->
Content to get
content to get
content to get
<--------->
現在我只有這個:
<?php
$myfile = file_get_contents("foo.txt");
$rows = explode("\n", $myfile);
foreach($row as $line => $data) {
if ($data == "<--------->") {
}
}
?>
我真的不知道如何找到我的分隔符的第二位置,並檢索內容。
我希望我明白了! 問候和感謝。
Beggining /結束? –
例如是或其他 –
將始終在<--------->之間?和多少可能的塊? –