有一个请求效果很好。
查询获取描述文本并将其带入html代码中的元描述。问题是描述文本很长,元描述应限制在200个字符。怎么做?
查询文字:
if( sobi2Config::request( $_REQUEST, 'sobi2Task', null ) == 'sobi2Details' ) {
$metaDesc .= '';
} else {
$metaDesc .= $config->getSobiStr( $config->getSobiStr( $comMeta->description ) );
}
答案 0 :(得分:0)
您正在寻找substr功能。您可以像这样使用它:
if( sobi2Config::request( $_REQUEST, 'sobi2Task', null ) == 'sobi2Details' ) {
$metaDesc .= '';
} else {
$metaDesc .= substr( $config->getSobiStr( $config->getSobiStr( $comMeta->description ) ), 0, 200);
}