php 大括号放入数组
我想检查打开的 .txt 文件中是否有像下面这样打开和关闭的大括号:
file {
nextopen {
//content
}
}
不,这不是我自己的语言或任何东西,但我想知道 nextopen 函数和括号内的所有内容,以及所有内容如果您知道我的意思,请从文件函数内部将其添加到数组中。所以大括号内的所有内容都将在一个数组中。如果您知道如何执行此操作,请回复。
数组应该如下所示:
array(
[file] => '{ nextopen { //content } }',
[nextopen] => '{ //content }'
);
I would like to check a opened .txt file for braces that open and close like below:
file {
nextopen {
//content
}
}
no this is not my own language or anything, but I want to get say the nextopen function and all the contents inside the brackets, and all the stuff from inside the file function and add it to an array if you know what i mean. so all the content inside the braces will be in an array. if you know how to do this please reply.
array should look like this:
array(
[file] => '{ nextopen { //content } }',
[nextopen] => '{ //content }'
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其基本算法如下,
{ no-braces-here }
,将其放入缓冲区中,并用一个标识其在缓冲区中位置的幻数替换,在 php
测试
结果
中寻找的内容,如果您有任何疑问,请告诉我。
The basic algo for this is like the following
{ no-braces-here }
, put it in a buffer and replace with a magic number identifying its position in the bufferin php
test
result
let me know if you have any questions.