A Brief Introduction to Multi-Threading in PHP
- Foreword
- Execution
- Sharing
- Synchronization
- Pitfalls
// Ported from Stefan Gustavson's java implementation | |
// http://staffwww.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf | |
// Read Stefan's excellent paper for details on how this code works. | |
// | |
// Sean McCullough [email protected] | |
/** | |
* You can pass in a random number generator object if you like. | |
* It is assumed to have a random() method. | |
*/ |
// Ported from Stefan Gustavson's java implementation | |
// http://staffwww.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf | |
// Read Stefan's excellent paper for details on how this code works. | |
// | |
// Sean McCullough [email protected] | |
/** | |
* You can pass in a random number generator object if you like. | |
* It is assumed to have a random() method. | |
*/ |
<?php | |
// src/Foobar/Controller/FooController.php | |
namespace Foobar\Controller; | |
class FooController | |
{ | |
public function helloAction($request) | |
{ |
/** | |
* Allow the use of backbone collections instead of models | |
* @see http://experience.eu01.aws.af.cm/3/#backbone for the adaptor in action | |
* @see https://github.com/Rich-Harris/Ractive for details about Ractive | |
*/ | |
;(function(exports){ | |
var Ractive = exports.Ractive; | |
if(Ractive){ | |
Ractive.adaptors.backboneCollection = function(collection,path){ | |
var settingCollection, settingView, setCollection, setView, pathMatcher, pathLength, prefix; |
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
colors="false" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false" |
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
colors="false" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false" |
<?php | |
// lancer le programme avec php morpion.php ( version >= 5.4 ) | |
$t = array(); | |
// remplir le tableau | |
function remplirTableau() | |
{ | |
for ($l = 0; $l <= 2; $l++) { |
<?php | |
// lancer le programme avec php morpion.php ( version >= 5.4 ) | |
$t = array(); | |
// remplir le tableau | |
function remplirTableau() | |
{ | |
for ($l = 0; $l <= 2; $l++) { |
# hello word with ruby. | |
puts "Hello, world, What is your name?" | |
myname = gets() | |
result=<<HERE | |
Well, hello there, #{myname}." | |
HERE | |
puts result; |