scalar_objects

Extension that adds support for method calls on primitive types in PHP

  • Owner: nikic/scalar_objects
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

Add support for method calls on primitive types in PHP

NOTE: The master branch of this extension implements a new calling
convention using an extra parameter. For the previous $this based
version see the version 0.1 branch.

This extension implements the ability to register a class that handles the
method calls to a certain primitive type (string, array, ...). As such it
allows implementing APIs like $str->length().

The main purpose of this repo is to provide a proof of concept implementation
that can be used to design the new APIs. The switch to object syntax for
operations on primitive types is a unique opportunity for PHP to redesign many
of its inconsistent core APIs. This repo provides the means to quickly
prototype and test new APIs as userland code. Once the APIs are figured out
it will be proposed for inclusion into PHP.

Note: The ability to register type handlers from userland is just for
prototyping. It's not something I would actually want in PHP in the end.

Registering type handlers

Type handlers are registered through register_primitive_type_handler. The
function takes a type name (like "string" or "array") and a class name. The
class should contain static methods, which receive the primitive type as the
first parameter:

<?php

class StringHandler {
    public static function length($self) {
        return strlen($self);
    }

    public static function startsWith($self, $other) {
        return strpos($self, $other) === 0;
    }
}

register_primitive_type_handler('string', 'StringHandler');

$string = "abc";
var_dump($string->length()); // int(3)
var_dump($string->startsWith("a")); // bool(true)

The valid type names are: null, bool, int, float, string, array
and resource. Not all of those will make sense in practice, but for now they
are all supported.

Implemented APIs

As already pointed out in the introduction the main purpose of this repo is
designing good APIs for the primitive types. The implemented APIs are available
in the handlers/ folder (and are obviously work in progress). In order to
load these APIs just include the handlers/bootstrap.php file.

Installation

This extension supports PHP versions 5.4 to 7.2.

Unix

In order to compile and install the extension run the following commands:

phpize
./configure
make
sudo make install

Windows

Download a prebuilt Windows DLL that matches your PHP version
and move it into the ext/ directory of your PHP installation. Furthermore
you'll have to add extension=php_scalar_objects.dll to your php.ini.

Testing the extension

The extension comes with a run-tests.php file to run the tests. (To see
examples of the implemented APIs you should also look in the tests.) The
script is run as follows:

php run-tests.php -q -p php

Where php is the path to your PHP executable.

Limitations

This extension has a number of limitations:

  • On PHP 5 it is not possible to write "str"->method() or [...]->method() or
    (...)->method(). This is a restriction of the PHP parser that can not be changed through an
    extension. On PHP 7 this syntax is supported.
  • Due to technical limitations, it is not possible to create mutable APIs for primitive
    types. Modifying $self within the methods is not possible (or rather, will have no effect,
    as you'd just be changing a copy).

Main metrics

Overview
Name With Ownernikic/scalar_objects
Primary LanguagePHP
Program languagePHP (Language Count: 5)
Platform
License:MIT License
所有者活动
Created At2013-01-25 10:51:22
Pushed At2024-07-21 04:26:42
Last Commit At2024-07-13 10:59:53
Release Count0
用户参与
Stargazers Count1.1k
Watchers Count54
Fork Count44
Commits Count105
Has Issues Enabled
Issues Count36
Issue Open Count10
Pull Requests Count7
Pull Requests Open Count2
Pull Requests Close Count4
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private