This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Ma fonction formField</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//========== inclure un fichier ===============// | |
include ($SERVER['DOCUMENTROOT']."/repertoire/fichier.php"); //pour référer un script PHP | |
include_once("repertoire/fichier.php"); //inclue qu'une seul fois le fichier | |
require("repertoire/fichier.php"); //cette fonction arrête le script si il n'est pas parvenue à le trouver | |
require_once("repertoire/fichier.php"); //inclue qu'une seul fois le fichier | |
/*la fonction include autorise les fichier distant | |
mais il faut mettre allow_url_fopen à on dans le fichier de config php.ini*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//instalation sur linux | |
sudo apt-get install git | |
//for ui git in terminal | |
curl -L http://install.ohmyz.sh | sh | |
//télécharger git | |
http://git-scm.com/downloads | |
//interface pour gérer git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
class ${1:className} { | |
//variable instance | |
private \$${2:val}; | |
//constructeur | |
function __construct(\$${2:val}){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
//Getter ${1:val} | |
public function get${1/(?:^|_)(\w)/\U$1$2/g$1}(){ | |
return \$this->${1:val}; | |
} | |
//Setter ${1:val} | |
public function set${1/(?:^|_)(\w)/\U$1$2/g$1}(\$${1:val}){ | |
\$this->${1:val} = \$${1:val}; |
NewerOlder