一 **
1、index.php
<?php
include_once("conn/conn.php"); //呼叫連線資料庫的檔案
include_once("function.php");
?>
<?php
$sql=mysql_query("select * from tb_new_dynamic order by id desc limit 0,6",$id);
while($myrow=mysql_fetch_array($sql))
?>
<?php echo "[".substr(str_replace("-","/",$myrow[createtime]),0,10)."]";?>
<?php }
?>
2、function.php
<?php
function msubstr($str,$start,$len) else
$tmpstr.=substr($str,$i,1);
} return $tmpstr;
}?>
3、new_dynamic.php
<?php
include_once("conn/conn.php"); //呼叫連線資料庫的檔案
include_once("function.php");
?>
<?php
$sql=mysql_query("select * from tb_new_dynamic where id='".$_get[id]."'",$id);
while($myrow=mysql_fetch_array($sql))?>
4、conn.php
<?php
$id=mysql_connect('localhost','root','root'); //連線資料庫伺服器
mysql_select_db('db_database06',$id); //連線db_database06資料庫
mysql_query("set names gb2312"); //指定資料庫中字元的編碼格式
?>
二 執行效果 輸出字串
5.連線字串 半形句號 是字串連線符,可以把兩個字串連線成乙個字串。例如7 5 echo str.url 技巧 我們可以使用字串連線符累加字串。例如7 6 第一句我們給 str賦值,str表示字串 php中文社群位址是 第二句表示在 str的值上累加字串 www.phpnet.cn 所以,str最後...
輸出字串Count and Say
最近研究輸出字串,稍微總結一下,以後繼續補充 標題如下 the count and say sequence is the sequence of integers beginning as follows 1,11,21,1211,111221,1is read off as one 1 or11...
輸出字串最後乙個單詞的長度
這是華為機試的一道程式設計題,但是並不複雜,只是簡單的字串處理,尤其是使用python這種語言,其實幾行 就可以搞定,做過以後在此總結一下。題目描述 計算字串最後乙個單詞的長度,單詞以空格隔開。輸入描述 一行字串,非空,長度小於5000。輸出描述 整數n,最後乙個單詞的長度。輸入例子 hello w...