29

我收到此错误“警告:第 32 行 /home/mysite/public_html/wp-content/themes/evento/lib/php/extra.class.php 中的非法字符串偏移‘类型’”

我意识到文件中的这部分代码是错误的,但是我在 PHP 方面还不是很好,我想知道是否有人可以帮助我重新编写这部分以消除错误。谢谢!(错误从第 32 行开始,这是下面 if 语句的开头)

这是代码:

/* new version */
    function get_attachment_struct( $inputs ){
        $attach = array();

    if( $inputs['type'] == 'attach' ){ 
            $name = $inputs['name'];
            $attach = array(
                0 => array(
                    'name' => $name,
                    'type' => 'text',
                    'label' =>  'Attachment URL',
                    'lvisible' => false,
                    'upload' => true,
                ),
                1 => array(
                    'name' => $name .'_id',
                    'type' => 'hidden',
                    'upload' => true
                ),
            );

            if( isset( $inputs[ 'classes' ] ) ){
                $attach[0]['classes'] = $inputs[ 'classes' ];
                $attach[1]['classes'] = $inputs[ 'classes' ] . '_id';
            }
        }
        return $attach;
    }

    /* new version */
4

4 回答 4

44
if ($inputs['type'] == 'attach') {

该代码是有效的,但它期望函数参数$inputs是一个数组。使用时的“非法字符串偏移”警告$inputs['type']意味着该函数被传递的是字符串而不是数组。(然后由于字符串偏移量是一个数字,'type'不适合。)

所以理论上问题出在其他地方,代码的调用者没有提供正确的参数。

但是,此警告消息对于 PHP 5.4 来说是新的。如果发生这种情况,旧版本没有警告。他们会默默地转换'type'0,然后尝试获取字符串的字符 0(第一个字符)。所以如果这段代码应该可以工作,那是因为滥用这样的字符串不会引起对 PHP 5.3 及以下版本的任何投诉。(很多老的PHP代码在升级后都遇到过这个问题。)

您可能想通过检查调用代码来调试为什么函数被赋予一个字符串,并通过在函数中执行 a 来找出它具有什么值var_dump($inputs);。但是,如果您只想关闭警告以使其表现得像 PHP 5.3,请将行更改为:

if (is_array($inputs) && $inputs['type'] == 'attach') {
于 2013-03-12T13:26:06.450 回答
0
if(isset($rule["type"]) && ($rule["type"] == "radio") || ($rule["type"] == "checkbox") )
{
    if(!isset($data[$field]))
        $data[$field]="";
}
于 2014-06-11T00:57:57.073 回答
0
if (isset($inputs['type']) && $inputs['type'] == 'attach') {

或者

if (is_array($inputs) && isset($inputs['type']) && $inputs['type'] == 'attach') {
于 2021-11-08T12:24:16.037 回答
-3

当我使用 php ver 7.1.6 时,我在 WP 中遇到同样的错误 - 只需将您的 php 版本恢复到 7.0.20,错误就会消失。

于 2017-06-30T20:54:06.037 回答