我正在学习CakePHP文本实用程序类here,但没有看到纯文本和html清除方法之间的区别
我已经尝试了该示例,并将方法从文本更改为html,但没有区别
这是我的代码。当我从方法=>文本更改为html时,我没有看到任何差异
$options = [
'clean' => [
'method' => 'text',
//'method' => 'html',
],
'before' => ':',
'after' => ''
];
$result = Text::insert(
'My name is :name and I am :age years old.',
['name' => 'Red'],
$options
);
pr($result); //My name is Red and I am years old.
我试图理解的是。在什么情况下我可以将'method' => 'html'
用于cleanInsert()
?