gpt4 book ai didi

php - CodeIgniter:如何在库中使用安全类的 xss_clean 函数?

转载 作者:可可西里 更新时间:2023-10-31 22:57:14 26 4
gpt4 key购买 nike

我正在尝试调用库中安全类的 xss_clean 函数。这是我正在使用的:

array_map('$this->CI->security->xss_clean', $shipping_info);

$shipping_info 是一个数组。CI 是我在构造函数中实例化的全局 CodeIgniter 对象:$this->CI =& get_instance();

这是 php 错误:

array_map() expects parameter 1 to be a valid callback, function 
'$this->CI->security->xss_clean' not found or invalid function name

最佳答案

尝试:

<?php
array_map(array($this->CI->security, 'xss_clean'), $shipping_info);

关于php - CodeIgniter:如何在库中使用安全类的 xss_clean 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11765218/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com