PHPでのpcreについて質問があります。
特定のファイル用の小さなパーサーを作成する必要があり、正規表現についてよく知らないので、助けが必要です。
これは入力...
blah blah [{img:xyzname}] one more blah blah[{root}]
and [{php:<?php ...echo 'phpcode';......?>}]
...だから私はこれらの値を私のものに置き換える必要があるので、ここに私がやったことです...
$alt=preg_replace_callback('|\[{(.*[^}\]])}\]|iU',
function ($match){
$m=explode(':',$match[1]);
switch($m[0]){
case 'img':
return $m[1]
break;
case 'php':
// i want that php code here in $m[1] but i am getting nothing
break;
default:
return 'UNDEFINED';
break;
}
}
},$this->content);
$this->content=$alt;
多くのパターンと多くのテストで何度も試しましたが、[{php:<?php .....?>}] contains <? and only when I put < ?
.