作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 file_get_contents()
和 file_put_contents()
加载和保存 .css
文件。保存加载的文件后,file_put_contents()
函数将对引号进行转义,如何避免这种情况。
$file = 'pathto/base.css';
$ta = $file_get_contents($file);// load
<textarea name="editor"><?php echo $ta;?></textarea>
// press submit button here
file_put_contents($file, $_POST['editor']);// save
// new css code will be something like this
.row:after{
content:/"/";// not what we need
}
最佳答案
很可能你有 Magic Quotes开启。
所以只需在 php.ini
中将其关闭并重新启动 PHP。
去除斜线:
file_put_contents($file, stripslashes($_POST['editor']));
关于php - file_put_contents 正在向代码添加反斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22797266/
我是一名优秀的程序员,十分优秀!