PHP

RudderStack’s PHP SDK allows you to track your customer event data from your PHP code. Once enabled, the event requests hit the RudderStack servers. RudderStack then routes the events to the specified destination platforms as configured by you.

You can find this SDK in our GitHub repository.

Installing the RudderStack PHP SDK

Install the RudderStack PHP SDK using the composer. You can also do so by running the following command:

git clone https://github.com/rudderlabs/rudder-php-sdk /my/app/folders/

You can use composer to install the SDK. Use the following command.

composer require rudderstack/rudder-php-sdk

Initializing the RudderStack Client

To initialize the RudderStack client, run the following code snippet:

require_once("/path/to/lib/Rudder.php");
Rudder::init(WRITE_KEY, array(
"data_plane_url" => DATA_PLANE_URL,
"consumer" => "lib_curl", // fork_curl
"debug" => true,
"max_queue_size" => 10000,
"batch_size" => 100
));

We append the protocol to DATA_PLANE_URL before sending the events to RudderStack server.

For example if your dataPlaneUrl is https://example.dataplane.com mention only example.dataplane.com

Sending Events from RudderStack

Once the RudderStack client is initialized, you can use it to send relevant customer events from the RudderStack client. An example track call is as shown in the following code snippet:

Rudder::track(array(
"userId" => "f4ca124298",
"event" => "Signed Up",
"properties" => array(
"plan" => "Enterprise"
)
));

Identify

The identify call lets you associate a user to their actions as well as captures the relevant traits or properties related to that user.

For a detailed explanation of the identify call, please refer to our RudderStack API Specification guide.

An example identify call is as shown:

Rudder::identify(array(
"userId" => "2sfjej334",
"traits" => array(
"email" => "test@test.com",
"name" => "test name",
"friends" => 25
)
));

The identify method parameters are as described below:

FieldTypePresenceDescription
anonymousIdStringOptionalSets the user ID for cases where there is no unique identifier for the user. Either userId or anonymousId is required.
userIdStringOptional, if anonymousId is already setUnique identifier for a particular user in your database.
contextObjectOptionalDictionary of information that provides context about a message. However, it is not directly related to the API call.
integrationsObjectOptionalA dictionary containing the destinations to be either enabled or disabled.
timestampDateOptionalThe timestamp of the message's arrival.
traitsObjectOptionalDictionary of the traits associated with the user, such as nameor email

Track

The track call lets you record the users' actions along with their associated properties. Each triggered action is called as an 'event'.

For a detailed explanation of the track call, please refer to our RudderStack API Specification guide.

An example track call is as shown:

Rudder::track(array(
"userId" => "f4ca124298",
"event" => "Article Bookmarked",
"properties" => array(
"title" => "Snow Fall",
"subtitle" => "The Avalanche at Tunnel Creek",
"author" => "John Branch"
)
));

The track method parameters are as described below:

NameTypePresenceDescription
user_idStringRequiredThe developer identification for your user
eventStringRequiredName of the event being performed by the user
propertiesObjectOptionalDictionary of the properties associated with a particular event.
contextObjectOptionalDictionary of information that provides context about a message. However, it is not directly related to the API call.
timestampDateOptionalThe timestamp of the message's arrival.
anonymous_idStringOptionalSets the user ID for cases where there is no unique identifier for the user. Either userId or anonymousId is required.
integrationsObjectOptionalA dictionary containing the destinations to be either enabled or disabled.

Page

The page call allows you to record the page views on your website. It also records the other relevant information about the page that is being viewed.

For a detailed explanation of the page call, please refer to our RudderStack API Specification guide.

An example page call is as shown:

Rudder::page(array(
"userId" => "f4ca124298",
"category" => "Docs",
"name" => "PHP library",
"properties" => array(
"url" => "https://segment.com/libraries/php/"
)
));

The page method parameters are as described below:

FieldTypePresenceDescription
anonymousIdStringOptionalSets the user ID for cases where there is no unique identifier for the user. Either userId or anonymousId is required.
userIdStringOptional, if anonymousId is already setUnique identifier for a particular user in your database.
contextObjectOptionalDictionary of information that provides context about a message. However, it is not directly related to the API call.
integrationsObjectOptionalA dictionary containing the destinations to be either enabled or disabled.
nameStringRequiredName of the page being viewed.
propertiesObjectOptionalDictionary of the properties associated with the page being viewed, such as url and referrer
timestampDateOptionalThe timestamp of the message's arrival.

Screen

The screen call is the mobile equivalent of the page call. It allows you to record the screen views on your mobile app along with the other relevant information about the app screen.

For a detailed explanation of the screen call, please refer to our RudderStack API Specification guide.

An example screen call is as shown:

Rudder::screen(array(
"userId" => "f4ca124298",
"category" => "Docs",
"name" => "PHP library",
"properties" => array(
"name" => "HomeScreen"
)
));

The screen method parameters are as described below:

FieldTypePresenceDescription
anonymousIdStringOptionalSets the user ID for cases where there is no unique identifier for the user. Either userId or anonymousId is required.
userIdStringOptional, if anonymousId is already setUnique identifier for a particular user in your database.
contextObjectOptionalDictionary of information that provides context about a message. However, it is not directly related to the API call.
integrationsObjectOptionalA dictionary containing the destinations to be either enabled or disabled.
nameStringRequiredName of the screen being viewed.
propertiesObjectOptionalDictionary of the properties associated with the page being viewed, such as url and referrer
timestampDateOptionalThe timestamp of the message's arrival.

Group

The group call allows you to associate an identified user to a group - either a company, project or a team. You can also record custom traits or properties associated with that group.

For a detailed explanation of the group call, please refer to our RudderStack API Specification guide.

An example group call is as shown:

Rudder::group(array(
"userId" => "2sfjej334",
"groupId" => "2sfjej334erresd",
"traits" => array(
"email" => "test@test.com",
"name" => "test name",
"friends" => 25
)
));

The group method parameters are as follows:

FieldTypePresenceDescription
anonymousIdStringOptionalSets the user ID for cases where there is no unique identifier for the user. Either userId or anonymousId is required.
userIdStringOptional, if anonymousId is already setUnique identifier for a particular user in your database.
contextObjectOptionalDictionary of information that provides context about a message. However, it is not directly related to the API call.
integrationsObjectOptionalA dictionary containing the destinations to be either enabled or disabled.
groupIdStringRequiredUnique identifier of the group, as present in your database.
traitsObjectOptionalDictionary of the properties or traits associated with the group, such as email or name.
timestampDateOptionalThe timestamp of the message's arrival.

Alias

The alias call allows you to associate one identity with another.

alias is an advanced method. However, it is required when managing user identities in some destinations.

An example alias call is as shown:

Rudder::alias(array(
"previousId" => "previousId",
"userId" => "2sfjej334",
));

The alias method parameters are as mentioned below:

FieldTypePresenceDescription
userIdStringOptional, if anonymousId is already setUnique identifier for a particular user in your database.
contextObjectOptionalDictionary of information that provides context about a message. However, it is not directly related to the API call.
integrationsObjectOptionalA dictionary containing the destinations to be either enabled or disabled.
previousIdStringRequiredThe previous unique identifier of the user.
traitsObjectOptionalDictionary of the properties or traits associated with the group, such as email or name.
timestampDateOptionalThe timestamp of the message's arrival.

For a detailed explanation of the alias call, please refer to our RudderStack API Specification guide.

Contact Us

To know more about the RudderStack PHP SDK, you can contact us. You can also start a conversation on our Slack channel; we will be happy to talk to you!

In case you come across any issues while using this SDK, please feel free to start a new issue on our GitHub repository.