PHP code example of kitpages / semaphore-bundle
1. Go to this page and download the library: Download kitpages/semaphore-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kitpages / semaphore-bundle example snippets
// get manager
$semaphoreManager = $this->get("kitpages_semaphore.manager");
// wait for the semaphore disponibility
$semaphoreManager->aquire("my_semaphore_name");
// do someting interesting with the protected resource
// release the semaphore
$semaphoreManager->release("my_semaphore_name");
public function registerBundles()
{
$bundles = array(
// ...
// use of monolog
new Symfony\Bundle\MonologBundle\MonologBundle(),
// the bundle itself
new Kitpages\SemaphoreBundle\KitpagesSemaphoreBundle(),
);
}