1、安裝composer.phar ?。?)打開composer中文網(wǎng)http://www.phpcomposer.com/ ?。?)點(diǎn)擊“下載” ?。?)找到下載內(nèi)容的地方,去下載當(dāng)前最新版本的co...
457
創(chuàng)建目錄方法/** * 目錄創(chuàng)建操作 * @param $dirname //需要創(chuàng)建的目錄名稱 * @retur...
341
<?php$arr = array(1,2,3,4,5,6,7,8,9);//創(chuàng)建數(shù)組$length=count($arr);//獲取數(shù)組長度//for循環(huán)數(shù)組,首先要知道數(shù)組的長度for($i...
589
<?php /** * 連接數(shù)據(jù)庫 */ //PDO連接數(shù)據(jù)庫的格式:PDO($dsn,$user,$pass); //dsn = mysq...
311
下載redis的windows版本。啟動redis進(jìn)入cmd,窗口不能關(guān)閉,關(guān)閉后redis服務(wù)會停止。msi方式,下載msi安裝包,將會作為windows的服務(wù)啟動,這樣操作不會因?yàn)榇翱陉P(guān)閉而導(dǎo)致r...
281
<?php $str = '<pre><sqan>雪山&草地 &阿壩賽區(qū)\n開幕,阿壩"熊貓隊(duì)&q...
279
php不支持塊級作用域,只有函數(shù)作用域引發(fā)的問題導(dǎo)致不能訪問函數(shù)作用域的變量<?php function demo(){ $arr&n...
369
function upload_dow_file($filename,$fileInfo, $uploadPath = './upload',&...
445
<?php class Father{ public static $money =&nbs...
281
/**/ //* 運(yùn)用adminer4.7管理mysql數(shù)據(jù)庫 //* Adminer登陸時(shí)要求必須有用戶名和密碼,需要設(shè)置數(shù)據(jù)庫的密碼 //* 數(shù)據(jù)庫類型要選擇mysql//1、添加一條記錄//IN...
433
<?php //目錄常用函數(shù) //打開目錄 $dir = opendir('public'); //讀取目錄 while($row = ...
306
<?php //文件信息相關(guān)函數(shù) date_default_timezone_set('Asia/Urumqi'); $fileName = "1....
370
<!--模板文件--> <?php include "config.php"; include "operation.php&qu...
304
//對象依賴注入class Girl{ public function work(){ return '會做飯&...
192
<?php namespace app\admin\controller; use think\Controller; use app\admin\model\Us...
761