本文整理汇总了PHP中StringHelper::handleStrNewline方法的典型用法代码示例。如果您正苦于以下问题:PHP StringHelper::handleStrNewline方法的具体用法?PHP StringHelper::handleStrNewline怎么用?PHP StringHelper::handleStrNewline使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringHelper
的用法示例。
在下文中一共展示了StringHelper::handleStrNewline方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: parseContenDetail
function parseContenDetail($url, $data, &$x)
{
global $logger, $filename, $conf;
$content = getContent($url);
if ($content != "") {
$row_data = array();
foreach ($data as $key => $value) {
$row_data[] = StringHelper::handleStrNewline(parseTag($value, $content));
}
$row_data[] = $url;
if (trim($row_data[0]) || trim($row_data[1]) || trim($row_data[2])) {
File_CSV::write($filename, $row_data, $conf);
echo "{$x} [Ok].\n";
$logger->log("Get {$url} content.[Ok]");
} else {
echo "{$x} [Fail].\n";
$logger->log("Get {$url} content.[Fail]");
}
$x++;
}
}
示例2: getCallIco
function getCallIco($phone_num, $mobile_phone = false)
{
global $ClassDir, $WebTemplateDir;
include_once $ClassDir . "URLHelper.class.php";
include_once $ClassDir . "StringHelper.class.php";
$phone_num = StringHelper::handleStrNewline($phone_num);
$icon = $mobile_phone ? "<A HREF='###' ONCLICK=\"remoteCellPhoneSMS.callMobilePhone('{$phone_num}');\" ><IMG SRC='" . URLHelper::getWebBaseURL() . $WebTemplateDir . "images/cellphone.gif' /></A><A HREF='###' ONCLICK=\"remoteCellPhoneSMS.sendSMS('{$phone_num}');\" ><IMG SRC='" . URLHelper::getWebBaseURL() . $WebTemplateDir . "images/sms.png' /></A><DIV ID=\"{$phone_num}mobile\" style=\"z-index:10; position:absolute;color:#FFFFFF;\" /><DIV ID=\"{$phone_num}sms\" style=\"z-index:10; position:absolute;color:#FFFFFF;\" />" : "<A HREF='###' ONCLICK=\"remoteCellPhoneSMS.callPhone('{$phone_num}');\" ><IMG SRC='" . URLHelper::getWebBaseURL() . $WebTemplateDir . "images/call.png' /></A><DIV ID=\"{$phone_num}phone\" style=\"z-index:10; position:absolute;\" />";
if (trim($phone_num) && SHOW_SMS) {
return $icon;
}
return;
}