經典程式(三)

2021-07-24 04:54:31 字數 944 閱讀 3954

一、php列印出來前一天時間?

echo date('y',strtotime('-1 day',time())); 

補充:date('y-m-d h:i:s',strtotime('-1 day',time())); //完整的時間格式 

echo date('y-m',strtotime('-1 month',time())); //列印出前乙個月 

​echo date("y-m-d h:i:s",time());//現在時間2012-02-20 08:29 不想要那個時間,把對應的字母去掉即可。如果還不行,檢查你的伺服器時間設定是否和北京時間一致

二、擷取字串函式?

1、php

1)strstr($url,'?');           擷取$url的「?」之後的所有字串(包含「?」)

2)substr($url,1,3);        擷取$url,從第1個元素起,之後的三個元素

三、寫乙個函式,能夠遍歷乙個資料夾下的所有檔案和子資料夾?

四、寫乙個函式,盡可能高效的,從乙個標準 url 裡取出檔案的副檔名?

寫乙個函式,盡可能高效的,從乙個標準 url 裡取出檔案的副檔名,例如: 需要取出 php 或 .php?

1、

<?php 

function getext($url)

$path='&name=berry';

getext($path);

2、

<?php 

function getext($url) else

} $path='&name=berry';

getext($path);

python經典程式 python經典程式

輸入輸出 判斷輸入整數是否在 0,100 之間 num eval input 請輸入乙個整數 if num 100 or num 0 判斷 0,100 print 輸入的整數小於0或大於100 else print 輸入整數在0到100之間 含 temps input 斐波拉列數列 a,b 0,1 ...

經典小程式

4 氣泡排序 公升序 思路 n個數,每次比較相鄰的兩個數,如果前面的數大就相互交換,這樣小的數就會像氣 泡一樣往前冒。一趟排序完成後最後乙個數最大。共進行n 1趟排序。完整程式 include define n 10 int main int num n int i,j int t for i 0 ...

經典c 程式

斐波那契前30項 include int main cout 判斷素數 include int main if k 1 coutcout 九九乘法表 include main 最大公約數 include int main 最小公倍數 include int fun int x,int y retur...