网页编辑PHP变量,编辑文件中的php代码和变量

标签:php

我有一个带有注释和代码的php文件.

// Some comments

define('THING', 'thing1');

$variable = 'string1';

if ($statement === true) { echo 'true1'; }

我想知道编辑此文件以更改变量并随更改吐出文件的新版本的最佳方法.

// Some comments

define('THING', 'thing2');

$variable = 'string2';

if ($statement === true) { echo 'true2'; }

该文件很大.我可以编写一个函数,将一个巨大的字符串加到输出中,但是我对注释等所做的所有转义都会让人头疼.

我当时正在考虑包括文件,但这只会允许它的变量在另一个类中使用.

到目前为止,我唯一能想到的就是使用要更改的变量将文件的“骨架”版本(如下)写入文件中.我可以分配它们,但实际上将其全部转储回文件,就像上面的两个示例一样,使我逃脱了.

最好的方法吗?

// Some comments

define('THING', $thing);

$variable = $string;

if ($statement === true) { echo $true; }

解决方法:

我本来想回应@Prisoner的评论,但我看到您提到您正在使用限制.您可以使用strtr()进行基本模板化,如下所示:

$template = <<

hi there {{ name }}

it's {{ day }}. how are you today?

STR;

$vars = [

'{{ name }}' => 'Darragh',

'{{ day }}' => date('l'),

];

$result = strtr($template, $vars);

产生以下字符串:

"hi there Darragh

it's Monday. how are you today?"

然后,您可以将结果写入文件,回显等等.

对于上面的特定示例:

$template = <<

define('THING', '{{ const }}');

$variable = '{{ variable }}';

if ($statement === true) { echo '{{ echo }}'; }

STR;

$vars = [

'{{ const }}' => 'thing1',

'{{ variable }}' => 'string1',

'{{ echo }}' => 'true1',

];

echo $result = strtr($template, $vars);

产量:

"<?php

define('THING', 'thing1');

$variable = 'string1';

if ($statement === true) { echo 'true1'; }"

希望这可以帮助 :)

标签:php

来源: https://codeday.me/bug/20191120/2041832.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值