gpt4 book ai didi

长度为 32 的 PHP 空字符串

转载 作者:可可西里 更新时间:2023-11-01 01:03:17 25 4
gpt4 key购买 nike

编辑:字符串正在被浏览器输出和解释。愚蠢的错误。

在我的项目中,我创建了一个类来生成我需要的 HTML 标记,而不是自己全部输出。我有一个名为 generateTag($control, $isCardValue = true) 的函数在名为 Card 的 php 类中.此函数根据通过数组参数 $control 传递的属性生成 HTML 标记.该函数如下所示:

public function generateTag($control, $isCardValue = true) {
if ($isCardValue) {
// First we convert the 'class' element to an array
if (isset($control['class']) && gettype($control['class']) !== 'array') {
$control['class'] = array($control['class']);
}
// Then we add the 'card-value' class to that array.
$control['class'][] = 'card-value';
}

// The tag key is mandatory
$tag = '<' . $control['tag'];
// All keys other than 'tag' & 'content' are considered attributes for the HTML tag.
foreach ($control as $key => $value) {
switch ($key) {
case 'tag':
break;

case 'content':
break;

default:
if (gettype($value) === 'array') {
$tag .= ' ' . $key . '="' . implode(' ', $value) . '"';
} elseif (gettype($value) === 'NULL') {
$tag .= ' ' . $key;
} else {
$tag .= ' ' . $key . '="' . $value . '"';
}
break;
}
}
$tag .= '>';

// If the 'content' key is not passed through $control, we assume that the tag
// doesn't need to be closed (e.g. <input> doesn't need a closing tag)
if (isset($control['content'])) {
if (gettype($control['content']) === 'array') {
foreach ($control['content'] as $child) {
$tag .= $this->generateTag($child);
}
} else {
$tag .= $control['content'];
}
$tag .= '</' . $control['tag'] . '>';
}

return $tag;
}

我使用这个函数创建所有 <option> <select> 的标签盒子。我只是循环遍历一个数组来生成标签:

foreach ($lists['tags'] as $key => $tag) {
$tag_options[$key] = array(
'tag' => 'option',
'value' => $tag['tag_id'],
'content' => $tag['tag_name_en'],
);
var_dump($card->generateTag($tag_options[$key], false));
}

这就是事情变得奇怪的地方。我对生成的字符串调用 var_dump,得到以下输出:

string(32) "" string(35) "" string(33) "" string(33) "" string(38) "" string(32) "" string(42) "" string(30) "" string(41) "" string(34) "" string(35) "" string(34) "" string(29) "" string(36) "" string(37) "" string(31) "" string(36) "" string(67) "" string(36) "" string(33) "" string(36) "" string(36) ""

它似乎正在创建一个长度为 ~35 的空字符串?最奇怪的是,当我调用 substr($tag_options[$key], 0, 1) , 它给了我 <正如它应该。但是当我调用 substr($tag_options[$key], 0, 2) ,它给了我长度为 2 的“空”字符串。对正在发生的事情有什么看法吗?

最佳答案

由于您是在浏览器中查看输出,它仍然会将每个字符串中的 HTML 解析为 HTML,您不会在呈现的页面上看到它。 var_dump 不进行 HTML 编码。

正如您所发现的,它适用于您页面的源代码。 :)

关于长度为 32 的 PHP 空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17617515/

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