This file contains 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
Compte rendu du 13/04/2018 | |
* A modifier | |
- Photos pour produits, | |
- Photos pour Conseils, | |
- Faire Google/Agenda. | |
- Regarder poyur les photos carousel : PurePower TrinityPLus(blonde). | |
* HomePage/ |
This file contains 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
/La/g = La | |
/([0-9]{2})\/([0-9]{2})\/([0-9]{4})/g = 04/09/2017 | |
/[ ][0-9]{1}\/[0-9]{2}/g = 9/10 | |
/format[a-z]*/g = format(...) | |
/(\((.*?)\))/g = prend les "()" plus le texte à l'interieur |
This file contains 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 | |
class Personn | |
{ | |
//Attributs | |
private $firstName; | |
private $lastName; | |
private $address; | |
private $birthDate; | |
//Methodes |
This file contains 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
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64) | |
-- | |
-- Host: localhost Database: wcs | |
-- ------------------------------------------------------ | |
-- Server version 5.7.21-0ubuntu0.17.10.1 | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
This file contains 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
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64) | |
-- | |
-- Host: localhost Database: julien_l_wcs_lille | |
-- ------------------------------------------------------ | |
-- Server version 5.7.21-0ubuntu0.17.10.1 | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
This file contains 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
. |
This file contains 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 | |
function writeSecretSentence(string $parametre1, string $parametre2) : string { | |
return $parametre1 . "s'incline toujours au ping-pong face à " . $parametre2; | |
} | |
echo writeSecretSentence('Gaëtan', 'Julien'); |
This file contains 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 | |
$weapons = ['fists', 'whip', 'gun']; | |
$opponentWeapon = $weapons[rand(0,2)]; | |
if ($opponentWeapon === 'gun') { | |
$indyWeapon = 'whip'; | |
} | |
elseif ($opponentWeapon === 'whip') { | |
$indyWeapon = 'fists'; |
NewerOlder