PHP   发布时间:2022-04-09  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了php实现处理输入转义字符的代码大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codecode">先来个函数,是最近wordpress 3.6中刚刚引入的
<pre class="brush:php;">
/**

  • Add slashes to a string or array of strings.

  • This should be used when preparing data for core API that expects slashed data.

  • This should not be used to escape data going directly into an SQL query.

  • @since 3.6.0

  • @param string|array $value String or array of strings to slash.

  • @return string|array Slashed $value
    */
    function wp_slash( $value ) {
    if ( is_array( $value ) ) {
    foreach ( $value as $k => $v ) {
    if ( is_array( $v ) ) {
    $value[$k] = wp_slash( $v );
    } else {
    $value[$k] = addslashes( $v );
    }
    }
    } else {
    $value = addslashes( $value );
    }

    return $value;
    }

大佬总结

以上是大佬教程为你收集整理的php实现处理输入转义字符的代码全部内容,希望文章能够帮你解决php实现处理输入转义字符的代码所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: