PHP dasturlash tilida Tic tac toe o'yini
o'yinni ishga tushirish uchun buyruqlar satrida
$: php ticTac.php
let Router = { | |
routes: { | |
"/": "index", | |
"/sayhello/:name": "sayhello" | |
}, | |
init: function() { | |
this._routes = []; | |
for (let route in this.routes) { | |
let method = this.routes[route]; | |
this._routes.push({ |
<?php | |
function clear_phone($number) | |
{ | |
return preg_replace('/\D/', '', $number); | |
} | |
function validate_phone($number) | |
{ | |
return boolval( preg_match("/^998(90|91|93|94|95|97|98|99|33|88)[0-9]{7}$/", $number ) ); |
PHP dasturlash tilida Tic tac toe o'yini
o'yinni ishga tushirish uchun buyruqlar satrida
$: php ticTac.php
PHP dasturlash tilida Snake Xenzia o'yini
o'yinni ishga tushirish uchun buyruqlar satrida
$: php snakeGame.php
PHP dasturlash tilida otishma o'yini
o'yinni ishga tushirish uchun buyruqlar satrida
$: php shooterGame.php
<?php
echo xss_clean( $unclean );
?>
#include "PS2Mouse.h" | |
int clicked = 0; | |
a mouse(6,5); //clock, data | |
void setup(){ | |
Serial.begin(9600); | |
while(!Serial); | |
mouse.begin(); | |
} |