Home > Backend Development > PHP Tutorial > 一个php变量封装进数组的有关问题

一个php变量封装进数组的有关问题

WBOY
Release: 2016-06-13 12:54:36
Original
957 people have browsed it

一个php变量封装进数组的问题
遇到一个关于json的问题。有一组正则规则,由于有很多行(以后可能还需要增删)
所以在主页页面里用一个固定的foreach代码,然后将正则规则封装一个json数组,保存到外部文件(以后修改规则时只需修改这个外部文件)。

json.txt代码

$json=<<<EOT<br />
[{"a":"!preg_match('@www\\\.aaa\\\.com@',$url,$match)||!preg_match('@www\\\.bbb\\\.com@',$url,$match)||!preg_match('@www\\\.ccc\\\.com@',$url,$match)","b":"1"},{"a":"!preg_match('@www\\\.ddd\\\.com@',$url,$match)||!preg_match('@www\\\.eee\\\.com@',$url,$match)","b":"2"},{"a":"!preg_match('@www\\\.fff\\\.com@',$url,$match)||!preg_match('@www\\\.ggg\\\.com@',$url,$match)","b":"3"}]<br />
EOT;<br />
Copy after login

php页面代码
<br />
include("json.txt");<br />
$date = json_decode($json);<br />
foreach($date as $row){<br />
    if($row->a){<br />
       //做一些$row->b的事物<br />
    }<br />
}
Copy after login


但是现在$url,$match2个php变量在json_decode后消失了,试加花括号{$url},{$match2}也没用。
现在如何解决这个问题?不行的话不用json也可以。最终目前是封装成一个数值,可以用foreach循环读出。谢谢。

json php
------解决方案--------------------
$json= ....
EOT;
就不会使变量“消失”
但我不是道你对 '$var' 如何还原成变量
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template