用php输出
① php怎么输出
$data --数据库日期
$now -- 当前日期
if($data == $now) {
echo $data;
}
如果需要格式化,$data取的时候用sql格式化。$now用php格式化。
② 如何用php输出一个网址的内容
一种是利用模板技术,另一种是用ob系列函数。两种方法,看起来都差不多,但是实际上,却是不同的。
第一种:利用模板
目前PHP的模板可以说是很多了,有功能强大的smarty,还有简单易用的smart template等。
它们每一种模板,都有一个获取输出内容的函数。
我们生成静态页面的方法,就是利用了这个函数。
用这个方法的优点是,代码比较清晰,可读性好。
这里我用smarty做例子,说明如何生成静态页
<?php
require('smarty/Smarty.class.php');
$t = new Smarty;
$t->assign("title","Hello World!");
$content = $t->fetch("templates/index.htm");
//这里的 fetch() 就是获取输出内容的函数,现在$content变量里面,就是要显示的内容了
$fp = fopen("archives/2005/05/19/0001.html", "w");
fwrite($fp, $content);
fclose($fp);
?>
③ PHP怎么输出数据
<?php
$db=mysql_connect( 'localhost', '用户名', '密码' );
mysql_select_db('test',$db);
$query=mysql_query("select * from test");
while($rs=mysql_fetch_array($query))
{
?>
<table>
<tr>
<td><?php echo $rs['id']?></td>
<td><?php echo $rs['title']?></td>
<td><?php echo $rs['content']?></td>
</tr>
</table>
<?php
}
?>
④ php输出语句都有那几个
(1)echo "hello world!";---echo命令
(2)print();输出语句,是函数,有返回值。输回出成功返回1,失败返回0。
(3)printf();格式化输出字符串答。例:printf("%d,%f",12,12.3);
(4)sprintf();格式化拼接字符串,不是输出语句,只能将字符串拼接。
(5)print_r();输出数组、对象等复合数据类型
⑤ php 输出语句
+号是运算符,用来做数学运算的
很显然,你这2个文本字符串是不能做加法运算的
应该改成
<?php
echo'hello'.'world';
.号才是连接符
⑥ php中如何输出值
var_dump,print_r,都可以啊smarty可以使用dump啊
⑦ 如何用php输出一段如下的js代码
$str=<<<EOF
$("#change1").html("<aid="change1"href="#">"+$.cookie('cookieName')+"</a>");
EOF;
echo'<pre>';
var_mp($str);
echo'</pre>';
⑧ 如何用php输出<html>和</html>之间的内容
String str="aaaa\r\n<html>hello,\r\nworld!!!</html>\r\nbbb";
String s=str.substring(str.indexOf(">")+1, str.lastIndexOf("<"));
System.out.println(s);
我用java给你实现的 但是
String s=str.substring(str.indexOf(">")+1, str.lastIndexOf("<"));
应该php里面也有 用 $echo(s)就行了 给分吧!
你那样做不合理你看你那里有个在后面数到》这个的不麻烦么?
⑨ PHP程序怎么在浏览器上输出
1 echo 常用的输出语句,例如:echo 'helloworld!';
2 print() 输出语句,有返回值。版例如:权print('helloworld!'); 输出成功返回1,失败返回0。
3 printf(); 格式化输出字符串。例如:printf("%d,%f",12,12.3);
4 print_r(); 输出数组、对象等复合数据类型。例如:print_r($array);
5 var_mp(); 可以判断一个变量的类型与长度,并输出变量的数值。例如:var_mp('helloworld!');
⑩ php 怎么输出语句
php有以下自输出语句:
1、echo常用的输出语句,例如:echo 'helloworld!';
2、print()输出语句,有返回值。例如:print('helloworld!'); 输出成功返回1,失败返回0
3、printf(); 格式化输出字符串。例如:printf("%d,%f",12,12.3);
4、print_r(); 输出数组、对象等复合数据类型。例如:print_r($array);
5、var_mp(); 可以判断一个变量的类型与长度,并输出变量的数值。例如:var_mp('helloworld!');