如何在添加文本“Uhr”的String中设置第三个运算符?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在添加文本“Uhr”的String中设置第三个运算符?相关的知识,希望对你有一定的参考价值。
我需要在以下代码的末尾添加“Uhr”:
<?
$doc = JFactory::getDocument();
$doc->setTitle($event->title . " | Example");
$doc->setDescription($event->title . " am " . $event->start, 'end' -> $event->end "uhr needs to be here");
?>
我该如何存档?因为如果我添加一个.
“Uhr”它不起作用:(
答案
$doc->setDescription($event->title . " am " . $event->start . ", " . $event->end . " Uhr");
应该这样做。
格式化日期:
$doc->setDescription($event->title . " am " . date('d.m.Y', strtotime($event->start)) . ", " . date('H:i', strtotime($event->end)) . " Uhr");
另一答案
我认为最后的->
有问题。也许这有效:
$doc->setDescription($event->title . " am " . $event->start, 'end' . $event->end . "uhr");
另一答案
在"am"
,"end"
和"urh needs to be here"
的情况下,最好使用相同的引号,如:
<?
$doc = JFactory::getDocument();
$doc->setTitle($event->title . " | Tanzschule Hartung");
$doc->setDescription($event->title . " | Tanzschule Hartung" " am " . $event->start, "end" -> $event->end . "uhr needs to be here");
?>
(看看你的文字'结尾',与上面的代码相比)
看起来$event->start
(和其他人)需要显示一些请求的文本。
从另一个函数请求文本后,为什么需要使用.
(点)是因为php需要了解何时必须显示文本。
.
是字符串连接运算符。
这可能也有效:
<?
$doc = JFactory::getDocument();
// Setting titles
$title = $doc->setTitle($event->title);
$start = $event->start;
$end = $event->end;
$doc->setDescription($title . " | Tanzschule Hartung am " . $start . " , end" . $end . "uhr needs to be here");
?>
我希望这可以解决一些问题。
如果您有任何问题随时问。
以上是关于如何在添加文本“Uhr”的String中设置第三个运算符?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Access 2007 中设置第一个连续组合框不可见?
如何在 Zend Framework 2 中设置第一个应用程序