FileMaker icon indicating copy to clipboard operation
FileMaker copied to clipboard

Deprecation error in FileMaker.php with PHP 8.2 (and fix)

Open karinehansen opened this issue 2 years ago • 1 comments

I'm receiving the following error: Deprecated: urlencode(): Passing null to parameter #1 ($string) of type string is deprecated in /path to airmoi_FileMaker/src/FileMaker.php on line 839

It is easily fixed by updating line 839 in FileMaker.php to: $restParams[] = urlencode($option) . ($value === true || $value == null ? '' : '=' . urlencode($value)); This adds a $value==null check.

karinehansen avatar Jul 07 '23 21:07 karinehansen

Hi,

Try to use the dataAPI branch which is already PHP8 compatible

airmoi avatar Dec 26 '23 15:12 airmoi