strlen() 期望参数 1 为字符串,给定数组

问题描述 投票:0回答:2

我有一个使用 phorm 的旧网站。 提交表单后,我收到此错误:

警告:strlen() 期望参数 1 为字符串,数组在 /home/user/public_html/form/phorm.php 第 2015 行给出

我知道这是因为升级到 php 5.3,有没有一种简单的方法可以修复该行代码以使我的表单再次工作?

 if (strlen($PHORM_ALERTTO) && !strlen($PHORM_TO) && !$PHORM_INFONLY && !$ph_GotData) {
    $PHORM_TO = $PHORM_ALERTTO; //THIS IS LINE 2015





 Read the mail template file(s) and mail it (them) to the user */
  $ph_section = "user template";
  if (strlen($PHORM_ALERTTO) && !strlen($PHORM_TO) && !$PHORM_INFONLY && !$ph_GotData) {
    $PHORM_TO = $PHORM_ALERTTO; //THIS IS LINE 2015
    settype($PHORM_TO, "array");
  }
  if (isset($PHORM_TMPL) && isset($PHORM_TO) && !$ph_Abort) {
    if ($ph_debug2) echo "<B>JS:</B> Mail Template(s)<BR>";

    if (count($PHORM_TMPL) > $ph_MaxTMPL) $ph_Alerts['120'] = ph_Message("A120");

    list(,$fPHORM_TO)      = each($PHORM_TO);
    list(,$fPHORM_SUBJECT) = each($PHORM_SUBJECT);

    while ($ph_MaxTMPL-- && list($ph_key, $lPHORM_TMPL) = each($PHORM_TMPL)) {
      if ($lPHORM_TMPL == ph_GENERIC) $lPHORM_TMPL = "$ph_root/files/generic.txt";
      else                            $lPHORM_TMPL = "$ph_tpd/$lPHORM_TMPL";

      $ph_Message   = "";
      $ph_Headers   = "";
      $ph_NonHeader = "";

      $lPHORM_TO      = "";
      $lPHORM_FROM    = "";
      $lPHORM_SUBJECT = "";
      $lPHORM_HEADERS = "";

      $ph_TemplateHeaders = false;
      if (ereg("(.+) +\+h$", $lPHORM_TMPL, $ph_regs)) {
        $lPHORM_TMPL = trim($ph_regs[1]);
        $ph_TemplateHeaders = true;
      }

      if ($ph_debug8) echo "Mail Template <B>$lPHORM_TMPL</B><BR>";

      if (!$ph_Template = @implode("", file($lPHORM_TMPL))) {
        $ph_Alerts['005'] = ph_Message("A005");
        if ($php_errormsg) $ph_Alerts['005P'] = "%%%: $php_errormsg";
        continue;
      }
php arrays strlen
2个回答
3
投票

这是因为您正在使用

strlen()
来计算数组,而它应该在您需要计算字符串时使用。你的错误很明显。

如果您需要计算一个或多个数组,只需使用

count
sizeof
函数。


0
投票

我听不懂你的技术答案(我是养老金领取者,哈哈)。 我点击一个链接阅读一篇文章,结果显示:“警告:strlen() 期望参数 1 为字符串,数组在 /home2/orbman69/public_html/wp-includes/functions.php 第 262 行给出”

© www.soinside.com 2019 - 2024. All rights reserved.