概述
{firstname} {lastname}
user_details以上下列嵌段是含有像这样的数据的数组:
$user_details = array(
0 => array('firstname' => 'Hercules', 'lastname' => 'Zeus'),
1 => array('firstname' => 'Jesus', 'lastname' => 'Christ'),
2 => array('firstname' => 'John', 'lastname' => 'Smith'),
3 => array('firstname' => 'Goerge', 'lastname' => 'Bush')
);
存在与其他块不同的BEGIN/FINSIH数组名称和不同的{元素}所以,我需要一个正则表达式,它将遍历整个文件并查找像这样的块,然后遍历每个值并将其替换为实际值...
我最后的输出应该是:
Hercules Zeus
Jesus Christ
John Smith
George Bush
的
…
标签是不固定的,在一些块我用等我现在有这样的代码:
$search_in = file_get_contents('path/to/my/html/file/');
$search_for = "#(.+?)#si";
if (!preg_match($search_for, $search_in, $return)) {
return NULL;
}
$return = preg_replace("#", "", $return[0]);
$return = preg_replace("#si", "", $return);
return var_dump($return);
//Look for anything enclosed in curly brackes like so {something}
if(!preg_match_all("/{([^}]*)}/", $search_in, $matches)) {
return NULL;
}
//Return all occurrences of {something} in an array for use later
foreach($matches[0] as $value) {
$_args[] = $value;
}
但第一个不是var_dump的任何数据,只有NULL,而且我知道上面的所有内容都是有效的数据。我得到这些错误:
Notice: Undefined index: firstname in /home/content/v/i/r... on line 96
Notice: Undefined index: lastname in /home/content/v/i/r... on line 96
我不想使用像codeIgniter,cakePHP,Zend或类似的框架。
+0
如果可能,请勿使用正则表达式。当然,有一个HTML解析库,可以通过元素进行导航。 –
+0
此外,user2864740,我自定义了我的块,所以我需要知道自己该怎么做,而我对DDM,smarty或类似项目不感兴趣,他们的文件太大我只需要几个函数 –
+0
我的意思是DOM上面不是DDM –
最后
以上就是野性早晨为你收集整理的html正则表达式模板,正则表达式来解析模板块HTML{firstname} {lastname}Hercules ZeusJesus ChristJohn SmithGeorge Bush…的全部内容,希望文章能够帮你解决html正则表达式模板,正则表达式来解析模板块HTML{firstname} {lastname}Hercules ZeusJesus ChristJohn SmithGeorge Bush…所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复