Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: php/php-src
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: sgolemon/php-src
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: apino
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Jan 24, 2014

  1. Add zend module api introspection to php-cli

    Add `--apino` option which outputs PHP's compiled
    Zend Module API info:
    
    $ sapi/cli/php --apino
    ZEND_MODULE_API_NO: 20131227
    ZEND_DEBUG:         enabled
    ZTS:                enabled
    
    Add `--modinfo /path/to/module.so` which loads the .so
    (without attempting to register it as an extension)
    and output the corresponding Zend Module API info the
    module was compiled with.
    
    $ sapi/cli/php --modinfo /usr/libexec/php/hello.so
    ZEND_MODULE_API_NO: 20121212
    ZEND_DEBUG:         disabled
    ZTS:                disabled
    sgolemon committed Jan 24, 2014
    Configuration menu
    Copy the full SHA
    3a2b29c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    51339ce View commit details
    Browse the repository at this point in the history
  3. Split dlopen/dlsym into helper method.

    Reduce copypasta for shared code between dl() and `php --modinfo`
    sgolemon committed Jan 24, 2014
    Configuration menu
    Copy the full SHA
    2d2152f View commit details
    Browse the repository at this point in the history
Loading