Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

PHP.Init

Initializes PHP.

Component Version macOS Windows Linux Server iOS SDK
PHP 2.9 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ❌ No

Deprecated

This function was deprecated.

MBS( "PHP.Init" )

Parameters

none

Result

Returns Ok on success.

Description

Initializes PHP.
This must be called at least once before you execute any PHP code. You must call this after PHP.Load.

May work on server. Be sure to use right bit number to match server, not client!

Windows error 193 means that 64-bit FileMaker tried to load 32-bit library or 32-bit FileMaker tried to load 64-bit library. The bit level must match between app and library. For macOS the error message will tell you about wrong architecture.

You can set PHP runtime configuration path via shell variable on Windows, e.g. like this:
MBS( "EnvironmentVariables.SetValue"; "PHPRC"; "C:\Users\Christian\Desktop\php-5.6.12-Win32-VC11-x64\\")

Examples

Init PHP on Windows:

Set Variable [$r; Value:MBS( "EnvironmentVariables.SetValue"; "PHPRC"; "C:\Users\Christian\Desktop\php-5.6.12-Win32-VC11-x64\\")]
Set Variable [$result; Value:MBS("PHP.Load"; "C:\Users\Christian\Desktop\php-5.6.12-Win32-VC11-x64\php5ts.dll")]
If [$result <> "OK"]
    Show Custom Dialog ["php DLL was not found!"; "Please enter the path the php DLL in the field provided and try again."]
    Exit Script []
End If
Set Variable [$result; Value:MBS("PHP.Init")]
If [$result = "OK"]
    Show Custom Dialog ["Success!"; "php is ready to go."]
Else
    Show Custom Dialog ["Error!"; "php couldn't be started"]
End If

See also

Example Databases

Blog Entries

This function checks for a paid license.

Created 18th August 2014, last changed 23th January 2023


PHP.GetVariable - PHP.IsInitialized

💬 Ask a question or report a problem