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