SlideShare une entreprise Scribd logo
1  sur  74
Télécharger pour lire hors ligne
PECL Picks
Extensions to make your life better
Who am I?
•   Elizabeth Marie Smith aka auroraeosrose
•   Pink is good
•   I hate computers
•   I love programming
•   Windows will not kill you
•   Work at OmniTI (http://omniti.com)
•   Contributor on various open source projects
    (including PHP, PECL and PHP-GTK)
No, it’s not a cucumber soaked in brine…
What is PECL?
• PHP Extension Code Library
• The place for PHP extensions
• Benefits:
 ▫   snapshot builds and win32 build support
 ▫   code hosting and distribution
 ▫   pecl install (PEAR packaging and installer support)
 ▫   community
 ▫   advertising
• No GPL code – license should be PHP license
  compatible (LGPL ok)
History
• Split off from PEAR in 2003
• Wez Furlong is “instigator”
 ▫ see famous letter
 ▫ http://news.php.net/article.php?group=php.pecl.
   dev&article=5
• Many of the points raised still need work –
  mainly PECL needs manpower, bodies to do the
  work
Current Status
• Supposed to allow independent release cycles
  ▫ kind of successful
• Has less oversight into code quality
  ▫ pecl qa?
  ▫ needs someone to be “secretary” and “organizer”
  ▫ always need people to test code, write tests, triage
    bugs, write docs
• Still has “siberia” modules
Future Plans and Ideas
• Real Siberia
  ▫ delete badly licensed extensions
  ▫ delete AWOL extensions
  ▫ move dead (superseded, library no longer exists)
• Better Windows Support
  ▫ Release builds
  ▫ CVS snapshot builds
• Recruit Developers and Helpers
  ▫ This talk
  ▫ Marketing – blog posts, podcasts, word of mouth
• Pyrus and PEAR installer fixes
• Automated testing for stuff in CVS
PECL and PHP Core
• Core -> PECL
 ▫   no, not to die
 ▫   few users
 ▫   not as widely useful features
 ▫   lack of maintainers
 ▫   examples: ncurses, dbase
• PECL -> Core
 ▫   widely useful features
 ▫   lots of users
 ▫   good maintenance
 ▫   examples: phar, zip, json
How to join PECL
• Subscribe to the pecl.dev mailing list
  ▫ pecl-dev-subscribe@lists.php.net
• Introduce yourself, if you have a project idea
  introduce it and show some code, meet people,
  ask questions
• #php.pecl IRC channel at the efnet.org
• To learn how to write extensions – go to Sara’s
  talk at 4pm today!
Using PECL
• pecl install {$extname}
  ▫ isn’t always available
  ▫ doesn’t work correctly on windows
  ▫ downloads, configures, compiles for you
• compile by hand
  ▫ always works
  ▫ requires some knowledge
• use binaries
  ▫ windows – download, put in /ext directory, enable in
    php.ini
  ▫ third party packages for pecl (rpm, .deb, whatever)
Let’s pick a peck of pickled PECLs
Types of Extensions
•   Wrap a C Library
•   Provide functionality in C code instead of PHP
•   Alter engine functionality
•   Provide debugging features
•   Allow embedded languages
Why would you want a C extension?
• Functionality
• Speed
• Do the impossible
Picks Criteria
• Popularity is hard to judge, although some try
 ▫ http://www.nexen.net/articles/dossier/18038-
   base_configuration_for_php_5.2.5.php
• Usefulness is hard to judge, people have
  different needs
• What I think you might find useful
• Extensions I think are cool
Opcode Caching
Caches the compiled bytecode of PHP scripts to
 avoid the overhead of parsing and compiling
 source code on each request (some or all of
 which may never even be executed)

For best performance, caching is to shared
 memory with direct execution from the shared
 memory and the minimum of memory copying
 at runtime.
APC - Alternative PHP Cache
• Maintainer:
 ▫   George Schlossnagle
 ▫   Daniel Cowgill
 ▫   Rasmus Lerdorf
 ▫   Gopal Vijayaraghavan
• Type: Engine Changes
• Release: 3.0.19 stable 2008-05-15
• Description: APC is a free, open, and robust
  framework for caching and optimizing PHP
  intermediate code.
Using APC                                       APC is both an
                                                   opcode cache and
                                                   an in memory
 <?php
 $bar = 'BAR';                                     cache to store data
 apc_add('foo', $bar);
 var_dump(apc_fetch('foo'));                       in your scripts
 echo "n";
 $bar = 'NEVER GETS SET';
                                                It can also be used for
 apc_add('foo', $bar);                             file progress
 var_dump(apc_fetch('foo'));
 echo "n";                                        uploads
 $constants = array(
      'ONE' => 1,
      'TWO' => 2,
      'THREE' => 3,
 );
 apc_define_constants('numbers', $constants);
 echo ONE, TWO, THREE;
 echo "n";
 $bar = 'BAR';
 apc_store('foo', $bar);                        string(3) "BAR"
 apc_delete('foo');
 // this is obviously useless in this form      string(3) "BAR"
 $bar = 'BAR';                                  123
 apc_store('foo', $bar);
 var_dump(apc_fetch('foo'));                    string(3) "BAR"
Memcache
• Maintainer:
  ▫ Antony Dovgal
  ▫ Mikael Johansson
• Type: Internal code (doesn’t use C client lib)
• Release: 2.2.3 stable 2008-02-05
            3.0.1 beta 2008-02-05
• Description: Memcached is a caching daemon
  designed especially for dynamic web applications to
  decrease database load by storing objects in
  memory.
  This extension allows you to work with memcached
  through handy OO and procedural interfaces.
Using Memcache                                                http://www.danga.com/me
                                                                 mcached/
 <?php
                                                              For more information
 $memcache = new Memcache;                                      about memcached
 $memcache-
 >connect('localhost', 11211) or die ("Could not connect");
 $version = $memcache->getVersion();                             memcached is a high-
 echo "Server's version: ".$version."<br/>n";                    performance, distributed
 $tmp_object = new stdClass;                                      memory object caching
 $tmp_object->str_attr = 'test';                                  system, generic in
 $tmp_object->int_attr = 123;                                     nature, but intended for
 $memcache-                                                       use in speeding up
 >set('key', $tmp_object, false, 10) or die ("Failed to save data dynamic web
 at the server");
 echo "Store data in the cache (data will expire in 10 second applications by
 s)<br/>n";                                                      alleviating database load.
 $get_result = $memcache->get('key');
 echo "Data from the cache:<br/>n";
 var_dump($get_result);
Image Manipulation
•   gd (php core)
•   imagick
•   cairo (new, gsoc 2008, not yet released)
•   cairo_wrapper
•   FreeImage (imagemagick library fork)
•   imlib2
Imagick
• Maintainer:
  ▫ Mikko Koppanen
  ▫ Scott MacVicar
• Type: Library Wrapper
• Library: Imagick
  http://www.imagemagick.org/script/index.php
• Release: 2.2.0 stable 2008-07-09
            2.2.1RC2 beta 2008-09-05
• Description: Imagick is a native php extension to create
  and modify images using the ImageMagick API.
  This extension requires ImageMagick version 6.2.4+ and
  PHP 5.1.3+.
Using Imagick
<?php                                                           $canvas->newImage(350, 70, "white");
 Create a new imagick object */
$im = new Imagick();                                            /* Draw the ImagickDraw on to the canvas */
                                                                $canvas->drawImage($draw);
/* Create new image. This will be used as fill pattern */
$im->newPseudoImage(50, 50, "gradient:red-black");              /* 1px black border around the image */
                                                                $canvas->borderImage('black', 1, 1);
/* Create imagickdraw object */
$draw = new ImagickDraw();                                      /* Set the format to PNG */
                                                                $canvas->setImageFormat('png');
/* Start a new pattern called "gradient" */
$draw->pushPattern('gradient', 0, 0, 50, 50);                   /* Output the image */
                                                                header("Content-Type: image/png");
/* Composite the gradient on the pattern */                     echo $canvas;
$draw->composite(Imagick::COMPOSITE_OVER, 0, 0, 50, 50, $im);

/* Close the pattern */
$draw->popPattern();

/* Use the pattern called "gradient" as the fill */
$draw->setFillPatternURL('#gradient');

/* Set font size to 52 */
$draw->setFontSize(52);

/* Annotate some text */
$draw->annotation(20, 50, "Hello World!");

/* Create a new canvas object and a white image */
$canvas = new Imagick();
HTTP Related
• uploadprogress
• pecl_http (so named to avoid classes with PEAR
  http)
Http
• Maintainer: Michael Wallner
• Type: Added Functionality
• Release: 1.6.1 stable 2008-07-23

• Description: This extension eases handling of HTTP urls,
  dates, redirects, headers and messages, provides means for
  negotiation of clients preferred language and charset, as well
  as a convenient way to send any arbitrary data with caching
  and resuming capabilities.
  It provides powerful request functionality, if built with CURL
  support. Parallel requests are available for PHP 5 and greater.
Using HTTP
<?php
try {                                                                   $charsets = array(
      $pool = new HttpRequestPool(                                                  'iso-8859-1', // default
            new HttpRequest('http://www.google.com/', HttpRequest::M                'iso-8859-2',
ETH_HEAD),                                                                          'iso-8859-15',
            new HttpRequest('http://www.php.net/', HttpRequest::METH                'utf-8'
_HEAD)                                                                  );
      );
      $pool->send();                                                    $pref = http_negotiate_charset($charsets, $result);
      foreach($pool as $request) {
            printf("%s is %s (%d)n",                                   if (strcmp($pref, 'iso-8859-1')) {
                   $request->getUrl(),                                              iconv_set_encoding('internal_encoding', 'iso-8859-1');
                   $request->getResponseCode() ? 'alive' : 'not alive',             iconv_set_encoding('output_encoding', $pref);
                   $request->getResponseCode()                                      ob_start('ob_iconv_handler');
            );                                                          }
      }
} catch (HttpException $e) {                                            print_r($result);
      echo $e;
}

$string = "".
      "05rn".
      "this rn".
      "07rn".
      "string rn".
      "12rn".
      "is chunked encodedrn".
      "01nrn".
      "00";
echo http_chunked_decode($string);
Upload Progress
• Maintainer: Christian Stocker
             Ben Ramsey
• Type: Added Functionality
• Release: 0.9.1 beta 2008-08-25

• Description: An extension to track progress of a
  file upload.
About UploadProgress
prototypes

string uploadprogress_get_contents(string identifier, string fieldname[, int maxlen])
array uploadprogress_get_info(string identifier)

array returned

Array
{
             [identifier] => string,
             [identifier_tmp] => string,
             [upload_id] => string,
             [data_filename] => temp data file,
             [fieldname] => upload field name,
             [filename] => filename of uploaded file,
             [time_start] => int,
             [time_last] => int,
             [speed_average] => int,
             [speed_last] => int,
             [bytes_uploaded] => int,
             [bytes_total] => int,
             [files_uploaded] => int,
             [est_sec] => int
}

This gives a lot more information then, for example, APC's upload progress implementation
PDF Madness
•   clibpdf (commercial – discontinued)
•   pdflib (commercial)
•   panda (Panda C library)
•   haru (libharu – winner!)
•   ps (postscript – if you need it)
Haru
•   Maintainer: Antony Dovgal
•   Type: C library wrapper
•   Lib: http://libharu.org/
•   Release: 0.0.1 beta 2007-03-26

• Description: PHP interface to Haru Free PDF
  Library for creating PDF documents
Using Haru
<?php
   $doc = new HaruDoc;
   $doc->setPageMode(HaruDoc::PAGE_MODE_USE_THUMBS); /* show thumbnails */
   $page = $doc->addPage(); /* add page to the document */
   $page-
   >setSize(HaruPage::SIZE_A4, HaruPage::LANDSCAPE); /* set the page to use A4 landscape
   format */
   $courier = $doc->getFont("Courier-Bold"); /* we'll use the bundled font a few lines below */   From php.net –
   $page->setRGBStroke(0, 0, 0); /* set colors */                                                   should create
   $page->setRGBFill(0.7, 0.8, 0.9);
   $page->rectangle(150, 150, 550, 250); /* draw a rectangle */                                     a pdf with a
   $page->fillStroke(); /* fill and stroke it */                                                    light-blue
   $page->setDash(array(3, 3), 0); /* set dash style for lines at this page */                      rectangle and
   $page->setFontAndSize($courier, 60); /* set font and size */
                                                                                                    white "Hello
   $page->setRGBStroke(0.5, 0.5, 0.1); /* set line color */
   $page->setRGBFill(1, 1, 1); /* set filling color */                                              World!" on it
   $page->setTextRenderingMode(HaruPage::FILL_THEN_STROKE); /* fill and stroke text */
   /* print the text */
   $page->beginText();
   $page->textOut(210, 270, "Hello World!");
   $page->endText();
   $doc->save("/tmp/test.pdf"); /* save the document into a file */
Amfext
• Maintainer: Emanuele Ruffaldi
• Type:Added Functionality
• Release: 0.9.2 beta 2008-07-23

• Description: Allows to encode and decode PHP
  data in ActionScript Message Format (AMF)
  version 0 and 3
Using AMFEXT
<?php

$r = amf_encode("hello world",AMF_AS_STRING_BUILDER); // ask to return a S
B
echo("returned type: " . $r . "n");
echo("returned length: " . amf_sb_length($r) . "n");
$sb1 = amf_sb_new();
amf_sb_append($sb1,"prefix");
amf_encode("hello world",0,"",$sb1); // store the result into the provided SB
echo("returned type: " . $sb1 . "n");
echo("returned length: " . amf_sb_length($sb1) . "n");

var_dump($contents);
Version Control
• cvsclient (not complete but works)
• perforce
• svn
SVN
• Maintainer: Alan Knowles
               Wez Furlong
                Scott MacVicar
• Type: Library Wrapper
• Library: libsvn
• Release: 0.4.1 beta 2008-06-24

• Description: Bindings for the Subversion revision
  control system, providing a method for
  manipulating a working copy or repository with
  PHP
Using SVN
<?php                                                       // svn_fs_is_file call:
// From user notes on PHP.net -                             print_r(svn_fs_is_file($fs_rev_handle, '/a-file.txt'));
 manipulating an actual repository
// Get a handle to the on-                                  // doing a diff
disk repository. Note that this                             list($diff, $errors) = svn_diff(
// is NOT a checked out project, but the a                         'http://www.example.com/svnroot/trunk/foo', SVN_REV
ctual svn repository!                                       ISION_HEAD,
$repos_handle = svn_repos_open('/var/lib/svn');                    'http://www.example.com/svnroot/branches/dev/foo', SV
$fs_handle = svn_repos_fs($repos_handle);                   N_REVISION_HEAD
                                                            );
// Now we need to open a revision because that's what the   if (!$diff) exit;
// svn_fs_* methods need. You'll probably $contents = '';
want the latest                                             while (!feof($diff)) {
// revision and we have a helper method fo $contents .= fread($diff, 8192);
r that.                                                     }
$youngest_rev = svn_fs_youngest_rev($fs_handle);            fclose($diff);
$fs_rev_handle = svn_fs_revision_root($fs_handle, $youngest fclose($errors);
_rev);                                                      var_dump($contents);
// Now we can actually start doing stuff, for example the

            Index: http://www.example.com/svnroot/trunk/foo
              ===============================================
              ==================== ---
              http://www.example.com/svnroot/trunk/foo (.../foo) (revision 23)
              +++ http://www.example.com/svnroot/branches/dev/foo (.../foo)
              (revision 27) // further diff output
Database Support
•   pdo_informix
•   pdo_ibm
•   paradox
•   odbtp
•   ingres
•   isis
•   notes
•   pdo_user – wait…what’s this?
PDO_USER
• Maintainer: Sara Golemon
               Ben Ramsey
• Type: Hybrid Craziness
• Release: 0.3.0 beta 2007-10-30

• Description: This extension provides a
  Userspace interface for PDO drivers
Using PDO_USER
• Defines two interfaces that your new PDO classes should implement,
PDO_User_Driver and PDO_User_Statement

• It also defines a Class called PDO_User with some static helper methods,
including a dsn parser and some sqlparser functions

• Documentation is available at
http://cvs.php.net/viewvc.cgi/pecl/pdo_user/README.OBJECTS?view=co

• It does NOT have hooks for the param binding data, so you can’t, for
example, use mysqli_prepare_statement since you can’t bind the parameters
properly

• Would be interesting to see this get some use and maybe even get into core
– imagine being able to write your db access in pdo even when a native pdo
driver doesn’t exist
Internationalization
•   translit
•   intl
•   fribidi
•   idn
Translit
•   Maintainer: Derick Rethans
•   Type: Provides Functionality
•   Release: 0.6.0 beta 2008-04-01
•   Homepage: http://derickrethans.nl/translit.php
•   Description: This extension allows you to transliterate
    text in non-latin characters (such as Chinese, Cyrillic,
    Greek etc) to latin characters. Besides the transliteration
    the extension also contains filters to upper- and
    lowercase latin, cyrillic and greek, and perform special
    forms of transliteration such as converting ligatures such
    as the Norwegian "æ" to "ae" and normalizing
    punctuation and spacing.
Using Translit
<?php
$string = file_get_contents('test-text.utf8');
$res = transliterate($string, array('han_transliterate', 'diacritical_remove'), 'utf-8', 'utf-8');
echo $res;

 Input
 ĀāĂ㥹ĆćĂ㥹ĈĉĆćĈĊĆćĈĉĊċĉĊċČČčĞğ
 大平矿难死者增至66人
 郑煤所属煤矿全停产

 Output
 AaAaAaCcCcCcCcDdDdEeEeEeEeEeGgGg
 dapingkuangnansǐzhezengzhi66ren
 zhengmeisuǒshǔmeikuangquantingchǎn
Text
•   bbcode
•   colorer
•   doublemetaphone
•   enchant
•   namazu
•   stem
•   xdiff
bbcode
•   Maintainer: Xavier De Cock
•   Type: Provides Functionality
•   Release: 1.0.2 stable 2008-08-18
•   Description: This is a quick and efficient BBCode Parsing
    Library.
    It provides various tag types, high speed tree based
    parsing,
    callback system, tag position restriction, Smiley
    Handling,
    Subparsing
    It will force closing BBCode tags in the good order, and
    closing
    terminating tags at the end of the string this is in order
    to ensure
    HTML Validity in all case.
Using bbcode
<?php
/*
  * Preparing RuleSet
  */
$arrayBBCode=array(
      'b'=>      array('type'=>BBCODE_TYPE_NOARG,
                                   'open_tag'=>'<b>', 'close_tag'=>'</b>'),   <i> Parser <b> Auto Correction
      'u'=>      array('type'=>BBCODE_TYPE_NOARG,
                                   'open_tag'=>'<u>', 'close_tag'=>'</u>'),     </b></i> at work <i> Parser
      'i'=>     array('type'=>BBCODE_TYPE_NOARG,
                                   'open_tag'=>'<i>', 'close_tag'=>'</i>'),
                                                                                <b> Auto Correction
);                                                                              </b></i><b> at work </b>
/*
  * Paired incorrectly nested BBCode                                            <i> Parser [b] Auto
  */
$text="[i] Parser [b] Auto Correction [/i] at work [/b]n";                     Correction </i> at work <i>
$BBHandler=bbcode_create($arrayBBCode);
echo bbcode_parse($BBHandler,$text);
                                                                                Parser <b> Auto Correction
// Enabling reopening of automaticaly closed elements                           </b></i><b> at work </b>
bbcode_set_flags($BBHandler,BBCODE_CORRECT_REOPEN_TAGS,
                           BBCODE_SET_FLAGS_SET);
echo bbcode_parse($BBHandler,$text);
/*
  * Unpaired incorrectly nested BBCode
  */
$text="[i] Parser [b] Auto Correction [/i] at workn";
echo bbcode_parse($BBHandler,$text);
// Enabling automatic close of pending tags
bbcode_set_flags($BBHandler,
                          BBCODE_CORRECT_REOPEN_TAGS|BBCO
DE_AUTO_CORRECT,
                          BBCODE_SET_FLAGS_SET);
echo bbcode_parse($BBHandler,$text);
Search
•   clucene
•   mnogosearch
•   swish
•   sphinx
Sphinx
• Maintainer: Antony Dovgal
• Type: Library Wrapper
• Library: libsphinx
  http://www.sphinxsearch.com/
• Release: 0.2.0 beta 2008-07-31
• Description: This extension provides bindings
  for libsphinxclient, client library for Sphinx
Using Sphinx
                                    array(10) {
                                      ["error"]=>
                                      string(0) ""
                                      ["warning"]=>
                                      string(0) ""
                                      ["status"]=>
<?php                                 int(0)
                                      ["fields"]=>
                                      array(3) {
                                        [0]=>
                                        string(7) "subject"
$s = new SphinxClient;                  [1]=>
                                        string(4) "body"

$s->setServer("localhost", 6712);       [2]=>
                                        string(6) "author"
                                      }
$s->setMatchMode(SPH_MATCH_ANY);      ["attrs"]=>
                                      array(0) {

$s->setMaxQueryTime(3);               }
                                      ["matches"]=>
                                      array(1) {
                                        [3]=>
                                        array(2) {

$result = $s->query("test");              ["weight"]=>
                                          int(1)
                                          ["attrs"]=>
                                          array(0) {
                                          }

var_dump($result);                    }
                                        }

                                      ["total"]=>
                                      int(1)
                                      ["total_found"]=>
                                      int(1)
                                      ["time"]=>
                                      float(0)
                                      ["words"]=>
                                      array(1) {
                                        ["to"]=>
                                        array(2) {
                                          ["docs"]=>
                                          int(1)
                                          ["hits"]=>
                                          int(1)
                                        }
                                      }
                                    }
PHP – do bad things
•   runkit
•   funcall
•   intercept
•   operator
Runkit
• Maintainer: Sara Golemon
• Type: Engine Manipulation
• Release: 0.9 beta 2006-06-06

• Description: Replace, rename, and remove user
  defined functions and classes.
  Define customized superglobal variables for
  general purpose use.
  Execute code in restricted environment
  (sandboxing)
Using Runkit
<?php
runkit_function_add('testme','$a,$b','echo "The value of a is $an"; echo "The value of b is $bn";');
testme(1,2);
function original() {
   echo "In a functionn";
}
runkit_function_copy('original','duplicate');
original();
duplicate();
                                                                                   The value of a is 1
function testme() {
   echo "Original Testme Implementationn";                                        The value of b is 2
}
testme();
runkit_function_redefine('testme','','echo "New Testme Implementationn";');
testme();                                                                          In a function
class Example {
    function foo() {
                                                                                   In a function
        echo "foo!n";
    }
}                                                                                  Original Testme Implementation
// create an Example object
$e = new Example();
                                                                                   New Testme Implementation
// Add a new public method
runkit_method_add(
      'Example',
                                                                                   16
      'add',
      '$num1, $num2',
      'return $num1 + $num2;',
      RUNKIT_ACC_PUBLIC
);
// add 12 + 4
echo $e->add(12, 4);
Funcall
•   Maintainer: Surf Chen
•   Type: Engine Manipulation
•   Release: 0.2.1 stable 2008-04-07
•   Site: http://code.google.com/p/funcall/

• Description: Call callbacks before or after
  specified functions/methods being called
Using Funcall
<?php                                          var_dump($result);
function my_func($arg1,$arg2) {                echo 'step 003 (cost:',$process_time
      usleep(20000);                    ,")n";
      echo "step 002n";                }
      return $arg1.$arg2;
}                                       fc_add_pre('my_func','pre_cb');
class my_class {                        fc_add_post('my_func','post_cb');
      function f1() {                   my_func('php','c');
            return true;
      }                                 fc_add_post('trim','post_cb');
}                                       echo trim("abcn");
function pre_cb($args) {
      var_dump($args);                  fc_add_pre('my_class::f1','pre_cb');
      echo "step 001n";                fc_add_post('my_class::f1','post_cb');
}                                       $my_class=new my_class;
function post_cb($args,$result,$process $my_class->f1();
_time) {
      var_dump($args);                  var_dump(fc_list());
Intercept
• Maintainer: Gabriel Ricard
• Type: Engine Manipulation
• Release: 0.3.0 alpha 2005-05-28

• Description: Allows the user to have a user-
  space function called when the specified
  function or method is called
Using Intercept
<?php

function myfunc() {
      echo "this is my function";                    before myfunc()
}                                                    this is my function
                                                     after myfunc()
function pre_myfunc() {
    echo "before myfunc()";
}

function post_myfunc() {
    echo "after myfunc()";
}

intercept_add('myfunc', 'pre_myfunc', PRE_INTERCEPT);
intercept_add('myfunc', 'post_myfunc', POST_INTERCEPT);

myfunc();
Operator
• Maintainer: Sara Golemon
• Type: Engine Manipulation
• Release: 0.3 beta 2006-02-08

• Description: Operator overloading for: +, -, *, /,
  %, <<, >>, ., |, &, ^, ~, !, ++, --,
  +=, -=, *=, /=, %=, <<=, >>=, .=, |=, &=, ^=, ~=,
  ==, !=, ===, !==, <, and <= operators.
  Conditional support for > and >= available with
  application of a patch.
Using Operator
<?php                                           }
class foo {
      private $value;                           function __construct($init) {
                                                    $this->value = $init;
     function __is_identical($val) {            }
         return $this->value === $val;     }
     }
                                           $c = new foo(5);             bool(true)
     function __is_not_identical($val) {
         return $this->value !== $val;     var_dump($c === 5);          bool(false)
     }                                     var_dump($c === '5');        bool(false)
                                           var_dump($c !== 5);
     function __is_equal($val) {           var_dump($c !== '5');        bool(true)
         return $this->value == $val;      var_dump($c == 5);           bool(true)
     }                                     var_dump($c == '5');         bool(true)
                                           var_dump($c == 6);
     function __is_not_equal($val) {       var_dump($c != 5);           bool(false)
         return $this->value != $val;      var_dump($c != '5');         bool(false)
     }                                     var_dump($c != 6);
                                           var_dump($c < 5);            bool(false)
     function __is_smaller($val) {         var_dump($c < 6);            bool(true)
         return $this->value < $val;       var_dump($c <= 5);           bool(false)
     }                                     var_dump($c <= 4);
                                                                        bool(true)
     function __is_smaller_or_equal($val                                bool(true)
){
         return $this->value <= $val;                                   bool(false)
Typehinting Help
• params
• spl_types
spl_types
• Maintainer: Marcus Börger
               David Coallier
• Type: Additional Functionality
• Release: 0.3.0 stable 2008-01-13

• Description: SPL Types is a collection of special
  typehandling classes
Using spl_types
<?php                                                class EnumOne extends SplEnum {
$int = new SplInt(94);                                     const __default = 1;
                                                     }
try {
    $int = 'Try to cast a string value for fun'; class EnumTwo extends SplEnum {
} catch (UnexpectedValueException $uve)              const __default = 2;
{                                                }
    echo $uve->getMessage() . PHP_EOL;
}                                                class EnumThree extends SplEnum {
                                                     const __default = 3;
echo $int; // Outputs 94                         }
$float = new SplFloat(3.154);                        $enumOne = new EnumOne();
$newFloat = new SplFloat(3);                         $enumTwo = new EnumTwo();
                                                     $enumThree = new EnumThree();
try {
    $float = 'Try to cast a string value for fun';
} catch (UnexpectedValueException $uve)              echo $enumOne; // outputs 1
{                                                    echo $enumTwo; // outputs 2
    echo $uve->getMessage() . PHP_EOL;               echo $enumThree; // outputs 3
}                                                    ($c <= 4);
echo $float; // Outputs 3.154
echo $newFloat; // Outputs 3
params
• Maintainer: Sara Golemon
• Type: Additional Functionality
• Release: 1.0 stable 2007-11-13

• Description: Userspace equivalent of
  zend_parse_parameters()
Using params
Params Extension
----------------                                                                      <?php
                                                                                      function example() {
Array params_parse(string $format, ...);                                                    list($foo, $bar, $baz) = params_parse("slr");
                                                                                            // $foo will be a string
$format is a type specifier string containin one or more of the following type              // $bar will be a long (integer)
specifiers:                                                                                 // $baz will be a resource
                                                                                      }
b                  The parameter will be converted to boolean and added to the
output stack                                                                           function ex2() {
l                  The parameter will be converted to long (integer) and added to           list($foo, $bar, $baz) = params_parse("O|lb", "stdClass");
the output stack                                                                            // $foo will be an object of type stdClass
d                  The parameter will be converted to double (float) and added to           // $bar will be a long (integer), with a default va
the output stack                                                                       lue of 0
s                  The parameter will be converted to string and added to the output        // $baz will be a double (float), with a default va
stack                                                                                  lue of 0.0
a                  The parameter will be converted to array and added to the output }
stack
o                  The parameter will be converted to an object and added to the function ex3() {
output stack                                                                                list($foo) = params_parse("O", array("A", "B", "C"));
O                  The parameter must be an object of the type(s) specified by the          // $foo will be an object of type A, B, or C
next argument to params_parse()                                                        }
r                  The parameter must be a resource (of any type)
R                  The parameter must be a resource of the type(s) specified by the function ex4() {
next argument to params_parse()                                                             list($foo) = params_parse("O", true);
z                  The parameter will be added to the output stack regardless of            // $foo will be an object of any type, but must be passed as an object (will not
type                                                                                   be converted)
*                  The output stack will be populated with an array containing a       }
variable number of arguments as passed
+                  Same as '*' but at least one var-arg is required                    function ex5() {
                                                                                            list($fp, $obj) = params_parse("RO", "stream", "stdClass");
A single pipe '|' may be used in the format specifier to split required arguments           // $fp will be a stream (file) resource
from optional arguments.                                                                    // $obj will be an object of type stdClass
                                                                                       }
If params_parse() is unable to return the requested types (because of 'r', 'R', or 'O'
type checking failures or insufficient args), it will return false.
Debugging Tools
• xdebug
• inclued (yes that’s spelled right)
• apd
XDebug
• Maintainer: Derick Rethans
• Type: Debugging
• Release: 2.0.3 stable 2008-04-09

• Description: The Xdebug extension helps you debugging your script by
  providing a lot of
  valuable debug information. The debug information that Xdebug can
  provide
  includes the following:
  * stack and function traces in error messages with:
  o full parameter display for user defined functions
  o function name, file name and line indications
  o support for member functions
  * memory allocation
  * protection for infinite recursions
  Xdebug also provides:
  * profiling information for PHP scripts
  * code coverage analysis
  * capabilities to debug your scripts interactively with a debug client
Using Xdebug
Xdebug has many features

1.   Displays stack traces on error
2.   Maximum nesting level protection
3.   Time tracking
4.   Pretty variable dumping (var_dump and friends)
5.   Stack traces
6.   Function traces
7.   Code Coverage
8.   Profiling
9.   Remote Debugging
SSH2
•   Maintainer: Sara Golemon
•   Type: Library Wrapper
•   Library: http://www.libssh2.org
•   Release: 0.10 beta 2005-11-01

• Provides bindings to the functions of libssh2
  which implements the SSH2 protocol.
  libssh2 is available from
  http://www.sourceforge.net/projects/libssh2
Using SSH2
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');

$sftp = ssh2_sftp($connection);

$stream = fopen("ssh2.sftp://$sftp/path/to/file", 'r');
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');

$stream = ssh2_shell($connection, 'vt102', null, 80, 24, SSH2
_TERM_UNIT_CHARS);
Docblock
• Maintainer: Greg Beaver
• Type: Additional Functionality
• Release: 0.2.0 alpha 2006-06-27

• Description This extension is like the tokenizer extension for PHP.
  It takes a document comment (docblock) like this one:
  /**
  * information {@inlinetag}
  * @tags
  */
  and parses it into tokens.
  The primary function is docblock_tokenize(), which accepts a
  string, and returns an array of arrays of array(TOKEN, "token").
  TOKEN is one of DOCBLOCK_* constants.
  docblock_tokenize() has an optional second bool parameter that
  determine whether to output non-essential tokens like
  the /** * stuff.
  docblock_token_name() takes a DOCBLOCK_* constant and returns its
Using DocBlock
<?php
docblock_tokenize(
     "/**
       * hi there
       * @author Greg Beaver <cellog@php.net>
       * @version 1.0.0
       */");
   "DOCBLOCK_COMMENTSTART"       " Greg Beaver <cellog@php.net>"
   "/**"                         "DOCBLOCK_NEWLINE"
   "DOCBLOCK_NEWLINE"            "
   "DOCBLOCK_TEXT"              "
   "hi there"                    "DOCBLOCK_ASTERISK"
   "DOCBLOCK_NEWLINE"            "*"
   "                             "DOCBLOCK_WHITESPACE"
  "                              ""
   "DOCBLOCK_ASTERISK"           "DOCBLOCK_TAG"
   "*"                           "@version"
   "DOCBLOCK_WHITESPACE"         "DOCBLOCK_TEXT"
   ""                            " 1.0.0"
   "DOCBLOCK_TAG"                "DOCBLOCK_COMMENTEND"
   "@author"                     "*/"
   "DOCBLOCK_TEXT"
Language Embedding
•   java
•   lua
•   perl
•   Python
Embedded Python
• Maintainer: Jon Parise
• Type: Language Embedded
• Release: 0.8.0 alpha 2008-02-17

• Description: This extension allows the Python
  interpreter to be embedded inside of PHP,
  allowing for the instantiate and manipulation of
  Python objects from within PHP
Using Embedded Python
<?php
$a = "test";
$b = true;                test 1 50 60.4
$c = 50;                  test 2.208 test
$d = 60.4;

$code = <<<EOD
import php

a   =   php.var('a')    http://www.csh.rit.edu/~jon/projects/pip/
b   =   php.var('b')    More information on how to use it
c   =   php.var('c')
d   =   php.var('d')

print a, b, c, d
print a, d / c + b, a
EOD;

py_eval($code);
My “Please adopt me” wishlist
• preprocessor
• intercept/funcall with full features
• threads
Extension do exist outside of PECL
Phurple        libpurple bindings         http://sourceforge.net/projects/phurple/
Xcache         opcode cache               http://xcache.lighttpd.net/
php-gtk        gui                        http://gtk.php.net
php-qt         gui                        http://php-qt.org/
ioncube        encoder and opcode cache   http://www.ioncube.com/
zend           encoder and opcode cache   http://zend.com
IRCG           xml streaming              http://schumann.cx/ircg/index.php
midgard        cms functionality          http://www.midgard-project.org

suhosin        security                   http://www.hardened-php.net/suhosin/

blitz          templating                 http://alexeyrybak.com/blitz/blitz_en.html
dbg            debugging                  http://dd.cron.ru/dbg/
eaccelerator   opcode cache               http://eaccelerator.net/
                                          http://www.microsoft.com/sql/technologies/ph
sqlsrv         db extension               p/default.mspx

ffmpeg-php     Wrapper for ffmpeg lib     http://ffmpeg-php.sourceforge.net/
Resources
 • Slides
   • http://elizabethmariesmith.com/slides/pecl-picks.pdf
 • PECL
   • http://pecl.php.net
   • http://news.php.net/article.php?group=php.pecl.dev&article
     =5
   • http://marc.info/?l=pecl-dev
 • Me
   • http://elizabethmariesmith.com
   • auroraeosrose@php.net

 • Information from http://php.net , http://cvs.php.net and
   http://pecl.php.net – documentation, extension examples,
   and occasionally phpt tests - thanks to all who work on PHP

                           THANKS

Contenu connexe

Tendances

Spl to the Rescue - Zendcon 09
Spl to the Rescue - Zendcon 09Spl to the Rescue - Zendcon 09
Spl to the Rescue - Zendcon 09Elizabeth Smith
 
Understanding PHP objects
Understanding PHP objectsUnderstanding PHP objects
Understanding PHP objectsjulien pauli
 
Php in 2013 (Web-5 2013 conference)
Php in 2013 (Web-5 2013 conference)Php in 2013 (Web-5 2013 conference)
Php in 2013 (Web-5 2013 conference)julien pauli
 
The worst Ruby codes I’ve seen in my life - RubyKaigi 2015
The worst Ruby codes I’ve seen in my life - RubyKaigi 2015The worst Ruby codes I’ve seen in my life - RubyKaigi 2015
The worst Ruby codes I’ve seen in my life - RubyKaigi 2015Fernando Hamasaki de Amorim
 
Mysqlnd, an unknown powerful PHP extension
Mysqlnd, an unknown powerful PHP extensionMysqlnd, an unknown powerful PHP extension
Mysqlnd, an unknown powerful PHP extensionjulien pauli
 
Supercharging WordPress Development in 2018
Supercharging WordPress Development in 2018Supercharging WordPress Development in 2018
Supercharging WordPress Development in 2018Adam Tomat
 
Zephir - A Wind of Change for writing PHP extensions
Zephir - A Wind of Change for writing PHP extensionsZephir - A Wind of Change for writing PHP extensions
Zephir - A Wind of Change for writing PHP extensionsMark Baker
 
PHP from soup to nuts Course Deck
PHP from soup to nuts Course DeckPHP from soup to nuts Course Deck
PHP from soup to nuts Course DeckrICh morrow
 
PHP traits, treat or threat?
PHP traits, treat or threat?PHP traits, treat or threat?
PHP traits, treat or threat?Nick Belhomme
 
Auto-loading of Drupal CCK Nodes
Auto-loading of Drupal CCK NodesAuto-loading of Drupal CCK Nodes
Auto-loading of Drupal CCK Nodesnihiliad
 
Doctrine 2.0 Enterprise Persistence Layer for PHP
Doctrine 2.0 Enterprise Persistence Layer for PHPDoctrine 2.0 Enterprise Persistence Layer for PHP
Doctrine 2.0 Enterprise Persistence Layer for PHPGuilherme Blanco
 

Tendances (20)

Spl to the Rescue - Zendcon 09
Spl to the Rescue - Zendcon 09Spl to the Rescue - Zendcon 09
Spl to the Rescue - Zendcon 09
 
Understanding PHP objects
Understanding PHP objectsUnderstanding PHP objects
Understanding PHP objects
 
Php in 2013 (Web-5 2013 conference)
Php in 2013 (Web-5 2013 conference)Php in 2013 (Web-5 2013 conference)
Php in 2013 (Web-5 2013 conference)
 
Anatomy of a reusable module
Anatomy of a reusable moduleAnatomy of a reusable module
Anatomy of a reusable module
 
The worst Ruby codes I’ve seen in my life - RubyKaigi 2015
The worst Ruby codes I’ve seen in my life - RubyKaigi 2015The worst Ruby codes I’ve seen in my life - RubyKaigi 2015
The worst Ruby codes I’ve seen in my life - RubyKaigi 2015
 
Building Custom PHP Extensions
Building Custom PHP ExtensionsBuilding Custom PHP Extensions
Building Custom PHP Extensions
 
Hacking with hhvm
Hacking with hhvmHacking with hhvm
Hacking with hhvm
 
Puppet @ Seat
Puppet @ SeatPuppet @ Seat
Puppet @ Seat
 
Puppet modules for Fun and Profit
Puppet modules for Fun and ProfitPuppet modules for Fun and Profit
Puppet modules for Fun and Profit
 
Cross platform php
Cross platform phpCross platform php
Cross platform php
 
PHP5.5 is Here
PHP5.5 is HerePHP5.5 is Here
PHP5.5 is Here
 
Mysqlnd, an unknown powerful PHP extension
Mysqlnd, an unknown powerful PHP extensionMysqlnd, an unknown powerful PHP extension
Mysqlnd, an unknown powerful PHP extension
 
Supercharging WordPress Development in 2018
Supercharging WordPress Development in 2018Supercharging WordPress Development in 2018
Supercharging WordPress Development in 2018
 
New in php 7
New in php 7New in php 7
New in php 7
 
Zephir - A Wind of Change for writing PHP extensions
Zephir - A Wind of Change for writing PHP extensionsZephir - A Wind of Change for writing PHP extensions
Zephir - A Wind of Change for writing PHP extensions
 
PHP from soup to nuts Course Deck
PHP from soup to nuts Course DeckPHP from soup to nuts Course Deck
PHP from soup to nuts Course Deck
 
PHP7 is coming
PHP7 is comingPHP7 is coming
PHP7 is coming
 
PHP traits, treat or threat?
PHP traits, treat or threat?PHP traits, treat or threat?
PHP traits, treat or threat?
 
Auto-loading of Drupal CCK Nodes
Auto-loading of Drupal CCK NodesAuto-loading of Drupal CCK Nodes
Auto-loading of Drupal CCK Nodes
 
Doctrine 2.0 Enterprise Persistence Layer for PHP
Doctrine 2.0 Enterprise Persistence Layer for PHPDoctrine 2.0 Enterprise Persistence Layer for PHP
Doctrine 2.0 Enterprise Persistence Layer for PHP
 

Similaire à Pecl Picks

PECL Picks - Extensions to make your life better
PECL Picks - Extensions to make your life betterPECL Picks - Extensions to make your life better
PECL Picks - Extensions to make your life betterZendCon
 
Facebook的缓存系统
Facebook的缓存系统Facebook的缓存系统
Facebook的缓存系统yiditushe
 
PSGI and Plack from first principles
PSGI and Plack from first principlesPSGI and Plack from first principles
PSGI and Plack from first principlesPerl Careers
 
4069180 Caching Performance Lessons From Facebook
4069180 Caching Performance Lessons From Facebook4069180 Caching Performance Lessons From Facebook
4069180 Caching Performance Lessons From Facebookguoqing75
 
HackU PHP and Node.js
HackU PHP and Node.jsHackU PHP and Node.js
HackU PHP and Node.jssouridatta
 
Apache and PHP: Why httpd.conf is your new BFF!
Apache and PHP: Why httpd.conf is your new BFF!Apache and PHP: Why httpd.conf is your new BFF!
Apache and PHP: Why httpd.conf is your new BFF!Jeff Jones
 
DevOps in PHP environment
DevOps in PHP environment DevOps in PHP environment
DevOps in PHP environment Evaldo Felipe
 
Tips
TipsTips
Tipsmclee
 
HTTP Caching and PHP
HTTP Caching and PHPHTTP Caching and PHP
HTTP Caching and PHPDavid de Boer
 
Boost your website by running PHP on Nginx
Boost your website by running PHP on NginxBoost your website by running PHP on Nginx
Boost your website by running PHP on NginxHarald Zeitlhofer
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalabilityWim Godden
 
Service discovery and configuration provisioning
Service discovery and configuration provisioningService discovery and configuration provisioning
Service discovery and configuration provisioningSource Ministry
 
Dutch php conference_apc_mem2010
Dutch php conference_apc_mem2010Dutch php conference_apc_mem2010
Dutch php conference_apc_mem2010isnull
 
Zend Con 2008 Slides
Zend Con 2008 SlidesZend Con 2008 Slides
Zend Con 2008 Slidesmkherlakian
 
php & performance
 php & performance php & performance
php & performancesimon8410
 

Similaire à Pecl Picks (20)

PECL Picks - Extensions to make your life better
PECL Picks - Extensions to make your life betterPECL Picks - Extensions to make your life better
PECL Picks - Extensions to make your life better
 
Facebook的缓存系统
Facebook的缓存系统Facebook的缓存系统
Facebook的缓存系统
 
PSGI and Plack from first principles
PSGI and Plack from first principlesPSGI and Plack from first principles
PSGI and Plack from first principles
 
4069180 Caching Performance Lessons From Facebook
4069180 Caching Performance Lessons From Facebook4069180 Caching Performance Lessons From Facebook
4069180 Caching Performance Lessons From Facebook
 
CakePHP
CakePHPCakePHP
CakePHP
 
HackU PHP and Node.js
HackU PHP and Node.jsHackU PHP and Node.js
HackU PHP and Node.js
 
Apache and PHP: Why httpd.conf is your new BFF!
Apache and PHP: Why httpd.conf is your new BFF!Apache and PHP: Why httpd.conf is your new BFF!
Apache and PHP: Why httpd.conf is your new BFF!
 
Api Design
Api DesignApi Design
Api Design
 
DevOps in PHP environment
DevOps in PHP environment DevOps in PHP environment
DevOps in PHP environment
 
Tips
TipsTips
Tips
 
HTTP Caching and PHP
HTTP Caching and PHPHTTP Caching and PHP
HTTP Caching and PHP
 
Memcached Study
Memcached StudyMemcached Study
Memcached Study
 
Boost your website by running PHP on Nginx
Boost your website by running PHP on NginxBoost your website by running PHP on Nginx
Boost your website by running PHP on Nginx
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalability
 
Revoke-Obfuscation
Revoke-ObfuscationRevoke-Obfuscation
Revoke-Obfuscation
 
Service discovery and configuration provisioning
Service discovery and configuration provisioningService discovery and configuration provisioning
Service discovery and configuration provisioning
 
Dutch php conference_apc_mem2010
Dutch php conference_apc_mem2010Dutch php conference_apc_mem2010
Dutch php conference_apc_mem2010
 
Zend Con 2008 Slides
Zend Con 2008 SlidesZend Con 2008 Slides
Zend Con 2008 Slides
 
Php hacku
Php hackuPhp hacku
Php hacku
 
php & performance
 php & performance php & performance
php & performance
 

Plus de Elizabeth Smith

Plus de Elizabeth Smith (20)

Welcome to the internet
Welcome to the internetWelcome to the internet
Welcome to the internet
 
Database theory and modeling
Database theory and modelingDatabase theory and modeling
Database theory and modeling
 
Taming the resource tiger
Taming the resource tigerTaming the resource tiger
Taming the resource tiger
 
Modern sql
Modern sqlModern sql
Modern sql
 
Php extensions
Php extensionsPhp extensions
Php extensions
 
Taming the resource tiger
Taming the resource tigerTaming the resource tiger
Taming the resource tiger
 
Php internal architecture
Php internal architecturePhp internal architecture
Php internal architecture
 
Taming the tiger - pnwphp
Taming the tiger - pnwphpTaming the tiger - pnwphp
Taming the tiger - pnwphp
 
Php extensions
Php extensionsPhp extensions
Php extensions
 
Php extensions
Php extensionsPhp extensions
Php extensions
 
Php’s guts
Php’s gutsPhp’s guts
Php’s guts
 
Lexing and parsing
Lexing and parsingLexing and parsing
Lexing and parsing
 
Security is not a feature
Security is not a featureSecurity is not a feature
Security is not a feature
 
Using unicode with php
Using unicode with phpUsing unicode with php
Using unicode with php
 
Mentoring developers-php benelux-2014
Mentoring developers-php benelux-2014Mentoring developers-php benelux-2014
Mentoring developers-php benelux-2014
 
Using unicode with php
Using unicode with phpUsing unicode with php
Using unicode with php
 
Socket programming with php
Socket programming with phpSocket programming with php
Socket programming with php
 
Mentoring developers
Mentoring developersMentoring developers
Mentoring developers
 
Do the mentor thing
Do the mentor thingDo the mentor thing
Do the mentor thing
 
Spl in the wild - zendcon2012
Spl in the wild - zendcon2012Spl in the wild - zendcon2012
Spl in the wild - zendcon2012
 

Dernier

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 

Dernier (20)

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

Pecl Picks

  • 1. PECL Picks Extensions to make your life better
  • 2. Who am I? • Elizabeth Marie Smith aka auroraeosrose • Pink is good • I hate computers • I love programming • Windows will not kill you • Work at OmniTI (http://omniti.com) • Contributor on various open source projects (including PHP, PECL and PHP-GTK)
  • 3. No, it’s not a cucumber soaked in brine…
  • 4. What is PECL? • PHP Extension Code Library • The place for PHP extensions • Benefits: ▫ snapshot builds and win32 build support ▫ code hosting and distribution ▫ pecl install (PEAR packaging and installer support) ▫ community ▫ advertising • No GPL code – license should be PHP license compatible (LGPL ok)
  • 5. History • Split off from PEAR in 2003 • Wez Furlong is “instigator” ▫ see famous letter ▫ http://news.php.net/article.php?group=php.pecl. dev&article=5 • Many of the points raised still need work – mainly PECL needs manpower, bodies to do the work
  • 6. Current Status • Supposed to allow independent release cycles ▫ kind of successful • Has less oversight into code quality ▫ pecl qa? ▫ needs someone to be “secretary” and “organizer” ▫ always need people to test code, write tests, triage bugs, write docs • Still has “siberia” modules
  • 7. Future Plans and Ideas • Real Siberia ▫ delete badly licensed extensions ▫ delete AWOL extensions ▫ move dead (superseded, library no longer exists) • Better Windows Support ▫ Release builds ▫ CVS snapshot builds • Recruit Developers and Helpers ▫ This talk ▫ Marketing – blog posts, podcasts, word of mouth • Pyrus and PEAR installer fixes • Automated testing for stuff in CVS
  • 8. PECL and PHP Core • Core -> PECL ▫ no, not to die ▫ few users ▫ not as widely useful features ▫ lack of maintainers ▫ examples: ncurses, dbase • PECL -> Core ▫ widely useful features ▫ lots of users ▫ good maintenance ▫ examples: phar, zip, json
  • 9. How to join PECL • Subscribe to the pecl.dev mailing list ▫ pecl-dev-subscribe@lists.php.net • Introduce yourself, if you have a project idea introduce it and show some code, meet people, ask questions • #php.pecl IRC channel at the efnet.org • To learn how to write extensions – go to Sara’s talk at 4pm today!
  • 10. Using PECL • pecl install {$extname} ▫ isn’t always available ▫ doesn’t work correctly on windows ▫ downloads, configures, compiles for you • compile by hand ▫ always works ▫ requires some knowledge • use binaries ▫ windows – download, put in /ext directory, enable in php.ini ▫ third party packages for pecl (rpm, .deb, whatever)
  • 11. Let’s pick a peck of pickled PECLs
  • 12. Types of Extensions • Wrap a C Library • Provide functionality in C code instead of PHP • Alter engine functionality • Provide debugging features • Allow embedded languages
  • 13. Why would you want a C extension? • Functionality • Speed • Do the impossible
  • 14. Picks Criteria • Popularity is hard to judge, although some try ▫ http://www.nexen.net/articles/dossier/18038- base_configuration_for_php_5.2.5.php • Usefulness is hard to judge, people have different needs • What I think you might find useful • Extensions I think are cool
  • 15. Opcode Caching Caches the compiled bytecode of PHP scripts to avoid the overhead of parsing and compiling source code on each request (some or all of which may never even be executed) For best performance, caching is to shared memory with direct execution from the shared memory and the minimum of memory copying at runtime.
  • 16. APC - Alternative PHP Cache • Maintainer: ▫ George Schlossnagle ▫ Daniel Cowgill ▫ Rasmus Lerdorf ▫ Gopal Vijayaraghavan • Type: Engine Changes • Release: 3.0.19 stable 2008-05-15 • Description: APC is a free, open, and robust framework for caching and optimizing PHP intermediate code.
  • 17. Using APC APC is both an opcode cache and an in memory <?php $bar = 'BAR'; cache to store data apc_add('foo', $bar); var_dump(apc_fetch('foo')); in your scripts echo "n"; $bar = 'NEVER GETS SET'; It can also be used for apc_add('foo', $bar); file progress var_dump(apc_fetch('foo')); echo "n"; uploads $constants = array( 'ONE' => 1, 'TWO' => 2, 'THREE' => 3, ); apc_define_constants('numbers', $constants); echo ONE, TWO, THREE; echo "n"; $bar = 'BAR'; apc_store('foo', $bar); string(3) "BAR" apc_delete('foo'); // this is obviously useless in this form string(3) "BAR" $bar = 'BAR'; 123 apc_store('foo', $bar); var_dump(apc_fetch('foo')); string(3) "BAR"
  • 18. Memcache • Maintainer: ▫ Antony Dovgal ▫ Mikael Johansson • Type: Internal code (doesn’t use C client lib) • Release: 2.2.3 stable 2008-02-05 3.0.1 beta 2008-02-05 • Description: Memcached is a caching daemon designed especially for dynamic web applications to decrease database load by storing objects in memory. This extension allows you to work with memcached through handy OO and procedural interfaces.
  • 19. Using Memcache http://www.danga.com/me mcached/ <?php For more information $memcache = new Memcache; about memcached $memcache- >connect('localhost', 11211) or die ("Could not connect"); $version = $memcache->getVersion(); memcached is a high- echo "Server's version: ".$version."<br/>n"; performance, distributed $tmp_object = new stdClass; memory object caching $tmp_object->str_attr = 'test'; system, generic in $tmp_object->int_attr = 123; nature, but intended for $memcache- use in speeding up >set('key', $tmp_object, false, 10) or die ("Failed to save data dynamic web at the server"); echo "Store data in the cache (data will expire in 10 second applications by s)<br/>n"; alleviating database load. $get_result = $memcache->get('key'); echo "Data from the cache:<br/>n"; var_dump($get_result);
  • 20. Image Manipulation • gd (php core) • imagick • cairo (new, gsoc 2008, not yet released) • cairo_wrapper • FreeImage (imagemagick library fork) • imlib2
  • 21. Imagick • Maintainer: ▫ Mikko Koppanen ▫ Scott MacVicar • Type: Library Wrapper • Library: Imagick http://www.imagemagick.org/script/index.php • Release: 2.2.0 stable 2008-07-09 2.2.1RC2 beta 2008-09-05 • Description: Imagick is a native php extension to create and modify images using the ImageMagick API. This extension requires ImageMagick version 6.2.4+ and PHP 5.1.3+.
  • 22. Using Imagick <?php $canvas->newImage(350, 70, "white"); Create a new imagick object */ $im = new Imagick(); /* Draw the ImagickDraw on to the canvas */ $canvas->drawImage($draw); /* Create new image. This will be used as fill pattern */ $im->newPseudoImage(50, 50, "gradient:red-black"); /* 1px black border around the image */ $canvas->borderImage('black', 1, 1); /* Create imagickdraw object */ $draw = new ImagickDraw(); /* Set the format to PNG */ $canvas->setImageFormat('png'); /* Start a new pattern called "gradient" */ $draw->pushPattern('gradient', 0, 0, 50, 50); /* Output the image */ header("Content-Type: image/png"); /* Composite the gradient on the pattern */ echo $canvas; $draw->composite(Imagick::COMPOSITE_OVER, 0, 0, 50, 50, $im); /* Close the pattern */ $draw->popPattern(); /* Use the pattern called "gradient" as the fill */ $draw->setFillPatternURL('#gradient'); /* Set font size to 52 */ $draw->setFontSize(52); /* Annotate some text */ $draw->annotation(20, 50, "Hello World!"); /* Create a new canvas object and a white image */ $canvas = new Imagick();
  • 23. HTTP Related • uploadprogress • pecl_http (so named to avoid classes with PEAR http)
  • 24. Http • Maintainer: Michael Wallner • Type: Added Functionality • Release: 1.6.1 stable 2008-07-23 • Description: This extension eases handling of HTTP urls, dates, redirects, headers and messages, provides means for negotiation of clients preferred language and charset, as well as a convenient way to send any arbitrary data with caching and resuming capabilities. It provides powerful request functionality, if built with CURL support. Parallel requests are available for PHP 5 and greater.
  • 25. Using HTTP <?php try { $charsets = array( $pool = new HttpRequestPool( 'iso-8859-1', // default new HttpRequest('http://www.google.com/', HttpRequest::M 'iso-8859-2', ETH_HEAD), 'iso-8859-15', new HttpRequest('http://www.php.net/', HttpRequest::METH 'utf-8' _HEAD) ); ); $pool->send(); $pref = http_negotiate_charset($charsets, $result); foreach($pool as $request) { printf("%s is %s (%d)n", if (strcmp($pref, 'iso-8859-1')) { $request->getUrl(), iconv_set_encoding('internal_encoding', 'iso-8859-1'); $request->getResponseCode() ? 'alive' : 'not alive', iconv_set_encoding('output_encoding', $pref); $request->getResponseCode() ob_start('ob_iconv_handler'); ); } } } catch (HttpException $e) { print_r($result); echo $e; } $string = "". "05rn". "this rn". "07rn". "string rn". "12rn". "is chunked encodedrn". "01nrn". "00"; echo http_chunked_decode($string);
  • 26. Upload Progress • Maintainer: Christian Stocker Ben Ramsey • Type: Added Functionality • Release: 0.9.1 beta 2008-08-25 • Description: An extension to track progress of a file upload.
  • 27. About UploadProgress prototypes string uploadprogress_get_contents(string identifier, string fieldname[, int maxlen]) array uploadprogress_get_info(string identifier) array returned Array { [identifier] => string, [identifier_tmp] => string, [upload_id] => string, [data_filename] => temp data file, [fieldname] => upload field name, [filename] => filename of uploaded file, [time_start] => int, [time_last] => int, [speed_average] => int, [speed_last] => int, [bytes_uploaded] => int, [bytes_total] => int, [files_uploaded] => int, [est_sec] => int } This gives a lot more information then, for example, APC's upload progress implementation
  • 28. PDF Madness • clibpdf (commercial – discontinued) • pdflib (commercial) • panda (Panda C library) • haru (libharu – winner!) • ps (postscript – if you need it)
  • 29. Haru • Maintainer: Antony Dovgal • Type: C library wrapper • Lib: http://libharu.org/ • Release: 0.0.1 beta 2007-03-26 • Description: PHP interface to Haru Free PDF Library for creating PDF documents
  • 30. Using Haru <?php $doc = new HaruDoc; $doc->setPageMode(HaruDoc::PAGE_MODE_USE_THUMBS); /* show thumbnails */ $page = $doc->addPage(); /* add page to the document */ $page- >setSize(HaruPage::SIZE_A4, HaruPage::LANDSCAPE); /* set the page to use A4 landscape format */ $courier = $doc->getFont("Courier-Bold"); /* we'll use the bundled font a few lines below */ From php.net – $page->setRGBStroke(0, 0, 0); /* set colors */ should create $page->setRGBFill(0.7, 0.8, 0.9); $page->rectangle(150, 150, 550, 250); /* draw a rectangle */ a pdf with a $page->fillStroke(); /* fill and stroke it */ light-blue $page->setDash(array(3, 3), 0); /* set dash style for lines at this page */ rectangle and $page->setFontAndSize($courier, 60); /* set font and size */ white "Hello $page->setRGBStroke(0.5, 0.5, 0.1); /* set line color */ $page->setRGBFill(1, 1, 1); /* set filling color */ World!" on it $page->setTextRenderingMode(HaruPage::FILL_THEN_STROKE); /* fill and stroke text */ /* print the text */ $page->beginText(); $page->textOut(210, 270, "Hello World!"); $page->endText(); $doc->save("/tmp/test.pdf"); /* save the document into a file */
  • 31. Amfext • Maintainer: Emanuele Ruffaldi • Type:Added Functionality • Release: 0.9.2 beta 2008-07-23 • Description: Allows to encode and decode PHP data in ActionScript Message Format (AMF) version 0 and 3
  • 32. Using AMFEXT <?php $r = amf_encode("hello world",AMF_AS_STRING_BUILDER); // ask to return a S B echo("returned type: " . $r . "n"); echo("returned length: " . amf_sb_length($r) . "n"); $sb1 = amf_sb_new(); amf_sb_append($sb1,"prefix"); amf_encode("hello world",0,"",$sb1); // store the result into the provided SB echo("returned type: " . $sb1 . "n"); echo("returned length: " . amf_sb_length($sb1) . "n"); var_dump($contents);
  • 33. Version Control • cvsclient (not complete but works) • perforce • svn
  • 34. SVN • Maintainer: Alan Knowles Wez Furlong Scott MacVicar • Type: Library Wrapper • Library: libsvn • Release: 0.4.1 beta 2008-06-24 • Description: Bindings for the Subversion revision control system, providing a method for manipulating a working copy or repository with PHP
  • 35. Using SVN <?php // svn_fs_is_file call: // From user notes on PHP.net - print_r(svn_fs_is_file($fs_rev_handle, '/a-file.txt')); manipulating an actual repository // Get a handle to the on- // doing a diff disk repository. Note that this list($diff, $errors) = svn_diff( // is NOT a checked out project, but the a 'http://www.example.com/svnroot/trunk/foo', SVN_REV ctual svn repository! ISION_HEAD, $repos_handle = svn_repos_open('/var/lib/svn'); 'http://www.example.com/svnroot/branches/dev/foo', SV $fs_handle = svn_repos_fs($repos_handle); N_REVISION_HEAD ); // Now we need to open a revision because that's what the if (!$diff) exit; // svn_fs_* methods need. You'll probably $contents = ''; want the latest while (!feof($diff)) { // revision and we have a helper method fo $contents .= fread($diff, 8192); r that. } $youngest_rev = svn_fs_youngest_rev($fs_handle); fclose($diff); $fs_rev_handle = svn_fs_revision_root($fs_handle, $youngest fclose($errors); _rev); var_dump($contents); // Now we can actually start doing stuff, for example the Index: http://www.example.com/svnroot/trunk/foo =============================================== ==================== --- http://www.example.com/svnroot/trunk/foo (.../foo) (revision 23) +++ http://www.example.com/svnroot/branches/dev/foo (.../foo) (revision 27) // further diff output
  • 36. Database Support • pdo_informix • pdo_ibm • paradox • odbtp • ingres • isis • notes • pdo_user – wait…what’s this?
  • 37. PDO_USER • Maintainer: Sara Golemon Ben Ramsey • Type: Hybrid Craziness • Release: 0.3.0 beta 2007-10-30 • Description: This extension provides a Userspace interface for PDO drivers
  • 38. Using PDO_USER • Defines two interfaces that your new PDO classes should implement, PDO_User_Driver and PDO_User_Statement • It also defines a Class called PDO_User with some static helper methods, including a dsn parser and some sqlparser functions • Documentation is available at http://cvs.php.net/viewvc.cgi/pecl/pdo_user/README.OBJECTS?view=co • It does NOT have hooks for the param binding data, so you can’t, for example, use mysqli_prepare_statement since you can’t bind the parameters properly • Would be interesting to see this get some use and maybe even get into core – imagine being able to write your db access in pdo even when a native pdo driver doesn’t exist
  • 39. Internationalization • translit • intl • fribidi • idn
  • 40. Translit • Maintainer: Derick Rethans • Type: Provides Functionality • Release: 0.6.0 beta 2008-04-01 • Homepage: http://derickrethans.nl/translit.php • Description: This extension allows you to transliterate text in non-latin characters (such as Chinese, Cyrillic, Greek etc) to latin characters. Besides the transliteration the extension also contains filters to upper- and lowercase latin, cyrillic and greek, and perform special forms of transliteration such as converting ligatures such as the Norwegian "æ" to "ae" and normalizing punctuation and spacing.
  • 41. Using Translit <?php $string = file_get_contents('test-text.utf8'); $res = transliterate($string, array('han_transliterate', 'diacritical_remove'), 'utf-8', 'utf-8'); echo $res; Input ĀāĂ㥹ĆćĂ㥹ĈĉĆćĈĊĆćĈĉĊċĉĊċČČčĞğ 大平矿难死者增至66人 郑煤所属煤矿全停产 Output AaAaAaCcCcCcCcDdDdEeEeEeEeEeGgGg dapingkuangnansǐzhezengzhi66ren zhengmeisuǒshǔmeikuangquantingchǎn
  • 42. Text • bbcode • colorer • doublemetaphone • enchant • namazu • stem • xdiff
  • 43. bbcode • Maintainer: Xavier De Cock • Type: Provides Functionality • Release: 1.0.2 stable 2008-08-18 • Description: This is a quick and efficient BBCode Parsing Library. It provides various tag types, high speed tree based parsing, callback system, tag position restriction, Smiley Handling, Subparsing It will force closing BBCode tags in the good order, and closing terminating tags at the end of the string this is in order to ensure HTML Validity in all case.
  • 44. Using bbcode <?php /* * Preparing RuleSet */ $arrayBBCode=array( 'b'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'<b>', 'close_tag'=>'</b>'), <i> Parser <b> Auto Correction 'u'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'<u>', 'close_tag'=>'</u>'), </b></i> at work <i> Parser 'i'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'<i>', 'close_tag'=>'</i>'), <b> Auto Correction ); </b></i><b> at work </b> /* * Paired incorrectly nested BBCode <i> Parser [b] Auto */ $text="[i] Parser [b] Auto Correction [/i] at work [/b]n"; Correction </i> at work <i> $BBHandler=bbcode_create($arrayBBCode); echo bbcode_parse($BBHandler,$text); Parser <b> Auto Correction // Enabling reopening of automaticaly closed elements </b></i><b> at work </b> bbcode_set_flags($BBHandler,BBCODE_CORRECT_REOPEN_TAGS, BBCODE_SET_FLAGS_SET); echo bbcode_parse($BBHandler,$text); /* * Unpaired incorrectly nested BBCode */ $text="[i] Parser [b] Auto Correction [/i] at workn"; echo bbcode_parse($BBHandler,$text); // Enabling automatic close of pending tags bbcode_set_flags($BBHandler, BBCODE_CORRECT_REOPEN_TAGS|BBCO DE_AUTO_CORRECT, BBCODE_SET_FLAGS_SET); echo bbcode_parse($BBHandler,$text);
  • 45. Search • clucene • mnogosearch • swish • sphinx
  • 46. Sphinx • Maintainer: Antony Dovgal • Type: Library Wrapper • Library: libsphinx http://www.sphinxsearch.com/ • Release: 0.2.0 beta 2008-07-31 • Description: This extension provides bindings for libsphinxclient, client library for Sphinx
  • 47. Using Sphinx array(10) { ["error"]=> string(0) "" ["warning"]=> string(0) "" ["status"]=> <?php int(0) ["fields"]=> array(3) { [0]=> string(7) "subject" $s = new SphinxClient; [1]=> string(4) "body" $s->setServer("localhost", 6712); [2]=> string(6) "author" } $s->setMatchMode(SPH_MATCH_ANY); ["attrs"]=> array(0) { $s->setMaxQueryTime(3); } ["matches"]=> array(1) { [3]=> array(2) { $result = $s->query("test"); ["weight"]=> int(1) ["attrs"]=> array(0) { } var_dump($result); } } ["total"]=> int(1) ["total_found"]=> int(1) ["time"]=> float(0) ["words"]=> array(1) { ["to"]=> array(2) { ["docs"]=> int(1) ["hits"]=> int(1) } } }
  • 48. PHP – do bad things • runkit • funcall • intercept • operator
  • 49. Runkit • Maintainer: Sara Golemon • Type: Engine Manipulation • Release: 0.9 beta 2006-06-06 • Description: Replace, rename, and remove user defined functions and classes. Define customized superglobal variables for general purpose use. Execute code in restricted environment (sandboxing)
  • 50. Using Runkit <?php runkit_function_add('testme','$a,$b','echo "The value of a is $an"; echo "The value of b is $bn";'); testme(1,2); function original() { echo "In a functionn"; } runkit_function_copy('original','duplicate'); original(); duplicate(); The value of a is 1 function testme() { echo "Original Testme Implementationn"; The value of b is 2 } testme(); runkit_function_redefine('testme','','echo "New Testme Implementationn";'); testme(); In a function class Example { function foo() { In a function echo "foo!n"; } } Original Testme Implementation // create an Example object $e = new Example(); New Testme Implementation // Add a new public method runkit_method_add( 'Example', 16 'add', '$num1, $num2', 'return $num1 + $num2;', RUNKIT_ACC_PUBLIC ); // add 12 + 4 echo $e->add(12, 4);
  • 51. Funcall • Maintainer: Surf Chen • Type: Engine Manipulation • Release: 0.2.1 stable 2008-04-07 • Site: http://code.google.com/p/funcall/ • Description: Call callbacks before or after specified functions/methods being called
  • 52. Using Funcall <?php var_dump($result); function my_func($arg1,$arg2) { echo 'step 003 (cost:',$process_time usleep(20000); ,")n"; echo "step 002n"; } return $arg1.$arg2; } fc_add_pre('my_func','pre_cb'); class my_class { fc_add_post('my_func','post_cb'); function f1() { my_func('php','c'); return true; } fc_add_post('trim','post_cb'); } echo trim("abcn"); function pre_cb($args) { var_dump($args); fc_add_pre('my_class::f1','pre_cb'); echo "step 001n"; fc_add_post('my_class::f1','post_cb'); } $my_class=new my_class; function post_cb($args,$result,$process $my_class->f1(); _time) { var_dump($args); var_dump(fc_list());
  • 53. Intercept • Maintainer: Gabriel Ricard • Type: Engine Manipulation • Release: 0.3.0 alpha 2005-05-28 • Description: Allows the user to have a user- space function called when the specified function or method is called
  • 54. Using Intercept <?php function myfunc() { echo "this is my function"; before myfunc() } this is my function after myfunc() function pre_myfunc() { echo "before myfunc()"; } function post_myfunc() { echo "after myfunc()"; } intercept_add('myfunc', 'pre_myfunc', PRE_INTERCEPT); intercept_add('myfunc', 'post_myfunc', POST_INTERCEPT); myfunc();
  • 55. Operator • Maintainer: Sara Golemon • Type: Engine Manipulation • Release: 0.3 beta 2006-02-08 • Description: Operator overloading for: +, -, *, /, %, <<, >>, ., |, &, ^, ~, !, ++, --, +=, -=, *=, /=, %=, <<=, >>=, .=, |=, &=, ^=, ~=, ==, !=, ===, !==, <, and <= operators. Conditional support for > and >= available with application of a patch.
  • 56. Using Operator <?php } class foo { private $value; function __construct($init) { $this->value = $init; function __is_identical($val) { } return $this->value === $val; } } $c = new foo(5); bool(true) function __is_not_identical($val) { return $this->value !== $val; var_dump($c === 5); bool(false) } var_dump($c === '5'); bool(false) var_dump($c !== 5); function __is_equal($val) { var_dump($c !== '5'); bool(true) return $this->value == $val; var_dump($c == 5); bool(true) } var_dump($c == '5'); bool(true) var_dump($c == 6); function __is_not_equal($val) { var_dump($c != 5); bool(false) return $this->value != $val; var_dump($c != '5'); bool(false) } var_dump($c != 6); var_dump($c < 5); bool(false) function __is_smaller($val) { var_dump($c < 6); bool(true) return $this->value < $val; var_dump($c <= 5); bool(false) } var_dump($c <= 4); bool(true) function __is_smaller_or_equal($val bool(true) ){ return $this->value <= $val; bool(false)
  • 58. spl_types • Maintainer: Marcus Börger David Coallier • Type: Additional Functionality • Release: 0.3.0 stable 2008-01-13 • Description: SPL Types is a collection of special typehandling classes
  • 59. Using spl_types <?php class EnumOne extends SplEnum { $int = new SplInt(94); const __default = 1; } try { $int = 'Try to cast a string value for fun'; class EnumTwo extends SplEnum { } catch (UnexpectedValueException $uve) const __default = 2; { } echo $uve->getMessage() . PHP_EOL; } class EnumThree extends SplEnum { const __default = 3; echo $int; // Outputs 94 } $float = new SplFloat(3.154); $enumOne = new EnumOne(); $newFloat = new SplFloat(3); $enumTwo = new EnumTwo(); $enumThree = new EnumThree(); try { $float = 'Try to cast a string value for fun'; } catch (UnexpectedValueException $uve) echo $enumOne; // outputs 1 { echo $enumTwo; // outputs 2 echo $uve->getMessage() . PHP_EOL; echo $enumThree; // outputs 3 } ($c <= 4); echo $float; // Outputs 3.154 echo $newFloat; // Outputs 3
  • 60. params • Maintainer: Sara Golemon • Type: Additional Functionality • Release: 1.0 stable 2007-11-13 • Description: Userspace equivalent of zend_parse_parameters()
  • 61. Using params Params Extension ---------------- <?php function example() { Array params_parse(string $format, ...); list($foo, $bar, $baz) = params_parse("slr"); // $foo will be a string $format is a type specifier string containin one or more of the following type // $bar will be a long (integer) specifiers: // $baz will be a resource } b The parameter will be converted to boolean and added to the output stack function ex2() { l The parameter will be converted to long (integer) and added to list($foo, $bar, $baz) = params_parse("O|lb", "stdClass"); the output stack // $foo will be an object of type stdClass d The parameter will be converted to double (float) and added to // $bar will be a long (integer), with a default va the output stack lue of 0 s The parameter will be converted to string and added to the output // $baz will be a double (float), with a default va stack lue of 0.0 a The parameter will be converted to array and added to the output } stack o The parameter will be converted to an object and added to the function ex3() { output stack list($foo) = params_parse("O", array("A", "B", "C")); O The parameter must be an object of the type(s) specified by the // $foo will be an object of type A, B, or C next argument to params_parse() } r The parameter must be a resource (of any type) R The parameter must be a resource of the type(s) specified by the function ex4() { next argument to params_parse() list($foo) = params_parse("O", true); z The parameter will be added to the output stack regardless of // $foo will be an object of any type, but must be passed as an object (will not type be converted) * The output stack will be populated with an array containing a } variable number of arguments as passed + Same as '*' but at least one var-arg is required function ex5() { list($fp, $obj) = params_parse("RO", "stream", "stdClass"); A single pipe '|' may be used in the format specifier to split required arguments // $fp will be a stream (file) resource from optional arguments. // $obj will be an object of type stdClass } If params_parse() is unable to return the requested types (because of 'r', 'R', or 'O' type checking failures or insufficient args), it will return false.
  • 62. Debugging Tools • xdebug • inclued (yes that’s spelled right) • apd
  • 63. XDebug • Maintainer: Derick Rethans • Type: Debugging • Release: 2.0.3 stable 2008-04-09 • Description: The Xdebug extension helps you debugging your script by providing a lot of valuable debug information. The debug information that Xdebug can provide includes the following: * stack and function traces in error messages with: o full parameter display for user defined functions o function name, file name and line indications o support for member functions * memory allocation * protection for infinite recursions Xdebug also provides: * profiling information for PHP scripts * code coverage analysis * capabilities to debug your scripts interactively with a debug client
  • 64. Using Xdebug Xdebug has many features 1. Displays stack traces on error 2. Maximum nesting level protection 3. Time tracking 4. Pretty variable dumping (var_dump and friends) 5. Stack traces 6. Function traces 7. Code Coverage 8. Profiling 9. Remote Debugging
  • 65. SSH2 • Maintainer: Sara Golemon • Type: Library Wrapper • Library: http://www.libssh2.org • Release: 0.10 beta 2005-11-01 • Provides bindings to the functions of libssh2 which implements the SSH2 protocol. libssh2 is available from http://www.sourceforge.net/projects/libssh2
  • 66. Using SSH2 <?php $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password'); $sftp = ssh2_sftp($connection); $stream = fopen("ssh2.sftp://$sftp/path/to/file", 'r'); $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password'); $stream = ssh2_shell($connection, 'vt102', null, 80, 24, SSH2 _TERM_UNIT_CHARS);
  • 67. Docblock • Maintainer: Greg Beaver • Type: Additional Functionality • Release: 0.2.0 alpha 2006-06-27 • Description This extension is like the tokenizer extension for PHP. It takes a document comment (docblock) like this one: /** * information {@inlinetag} * @tags */ and parses it into tokens. The primary function is docblock_tokenize(), which accepts a string, and returns an array of arrays of array(TOKEN, "token"). TOKEN is one of DOCBLOCK_* constants. docblock_tokenize() has an optional second bool parameter that determine whether to output non-essential tokens like the /** * stuff. docblock_token_name() takes a DOCBLOCK_* constant and returns its
  • 68. Using DocBlock <?php docblock_tokenize( "/** * hi there * @author Greg Beaver <cellog@php.net> * @version 1.0.0 */"); "DOCBLOCK_COMMENTSTART" " Greg Beaver <cellog@php.net>" "/**" "DOCBLOCK_NEWLINE" "DOCBLOCK_NEWLINE" " "DOCBLOCK_TEXT" " "hi there" "DOCBLOCK_ASTERISK" "DOCBLOCK_NEWLINE" "*" " "DOCBLOCK_WHITESPACE" " "" "DOCBLOCK_ASTERISK" "DOCBLOCK_TAG" "*" "@version" "DOCBLOCK_WHITESPACE" "DOCBLOCK_TEXT" "" " 1.0.0" "DOCBLOCK_TAG" "DOCBLOCK_COMMENTEND" "@author" "*/" "DOCBLOCK_TEXT"
  • 69. Language Embedding • java • lua • perl • Python
  • 70. Embedded Python • Maintainer: Jon Parise • Type: Language Embedded • Release: 0.8.0 alpha 2008-02-17 • Description: This extension allows the Python interpreter to be embedded inside of PHP, allowing for the instantiate and manipulation of Python objects from within PHP
  • 71. Using Embedded Python <?php $a = "test"; $b = true; test 1 50 60.4 $c = 50; test 2.208 test $d = 60.4; $code = <<<EOD import php a = php.var('a') http://www.csh.rit.edu/~jon/projects/pip/ b = php.var('b') More information on how to use it c = php.var('c') d = php.var('d') print a, b, c, d print a, d / c + b, a EOD; py_eval($code);
  • 72. My “Please adopt me” wishlist • preprocessor • intercept/funcall with full features • threads
  • 73. Extension do exist outside of PECL Phurple libpurple bindings http://sourceforge.net/projects/phurple/ Xcache opcode cache http://xcache.lighttpd.net/ php-gtk gui http://gtk.php.net php-qt gui http://php-qt.org/ ioncube encoder and opcode cache http://www.ioncube.com/ zend encoder and opcode cache http://zend.com IRCG xml streaming http://schumann.cx/ircg/index.php midgard cms functionality http://www.midgard-project.org suhosin security http://www.hardened-php.net/suhosin/ blitz templating http://alexeyrybak.com/blitz/blitz_en.html dbg debugging http://dd.cron.ru/dbg/ eaccelerator opcode cache http://eaccelerator.net/ http://www.microsoft.com/sql/technologies/ph sqlsrv db extension p/default.mspx ffmpeg-php Wrapper for ffmpeg lib http://ffmpeg-php.sourceforge.net/
  • 74. Resources • Slides • http://elizabethmariesmith.com/slides/pecl-picks.pdf • PECL • http://pecl.php.net • http://news.php.net/article.php?group=php.pecl.dev&article =5 • http://marc.info/?l=pecl-dev • Me • http://elizabethmariesmith.com • auroraeosrose@php.net • Information from http://php.net , http://cvs.php.net and http://pecl.php.net – documentation, extension examples, and occasionally phpt tests - thanks to all who work on PHP THANKS