Skip to content

Commit

Permalink
Update PHP 8.3 library
Browse files Browse the repository at this point in the history
  • Loading branch information
zulus committed Nov 29, 2023
1 parent e71a6c7 commit 9a0df30
Show file tree
Hide file tree
Showing 90 changed files with 26,237 additions and 72,143 deletions.
2 changes: 2 additions & 0 deletions plugins/org.eclipse.php.core/Resources/language/generate.php
Original file line number Diff line number Diff line change
Expand Up @@ -1469,6 +1469,8 @@ function escape_const_value($value)
$value = "\"${value}\"";
} elseif (is_array($value)) {
$value = var_export($value, true);
} elseif(is_object($value)) {
return null;
} elseif (! is_numeric($value) && ! is_bool($value) && $value !== null) {
if ($value === '\\') {
$value = '"' . addcslashes($value, "\\\"\r\n\t") . '"';
Expand Down
21 changes: 21 additions & 0 deletions plugins/org.eclipse.php.core/Resources/language/php8.3/.list
Original file line number Diff line number Diff line change
@@ -1,26 +1,32 @@
Core.php
FFI.php
PDO.php
PDO_Firebird.php
PDO_ODBC.php
Phar.php
Reflection.php
SPL.php
SimpleXML.php
Zend Debugger.php
Zend OPcache.php
amqp.php
apcu.php
ast.php
basic.php
bcmath.php
big_int.php
bz2.php
calendar.php
com_dotnet.php
couchbase.php
ctype.php
curl.php
date.php
dba.php
discount.php
dom.php
ds.php
enchant.php
event.php
exif.php
expect.php
Expand All @@ -35,13 +41,16 @@ gnupg.php
grpc.php
hash.php
http.php
ibm_db2.php
iconv.php
igbinary.php
imagick.php
imap.php
interbase.php
intl.php
json.php
ldap.php
libevent.php
libxml.php
mailparse.php
mbstring.php
Expand All @@ -52,6 +61,7 @@ mongodb.php
msgpack.php
mysqli.php
mysqlnd.php
oci8.php
odbc.php
openssl.php
pcntl.php
Expand All @@ -63,19 +73,24 @@ pdo_pgsql.php
pdo_sqlite.php
pdo_sqlsrv.php
pgsql.php
phpdbg_webhelper.php
phpiredis.php
posix.php
pspell.php
pthreads.php
random.php
raphf.php
rdkafka.php
readline.php
recode.php
redis.php
session.php
shmop.php
snmp.php
soap.php
sockets.php
sodium.php
solr.php
sqlite3.php
sqlsrv.php
ssh2.php
Expand All @@ -84,14 +99,20 @@ sysvmsg.php
sysvsem.php
sysvshm.php
tidy.php
timezonedb.php
tokenizer.php
twig.php
uuid.php
v8js.php
vips.php
wddx.php
win32service.php
xdebug.php
xhprof.php
xlswriter.php
xml.php
xmlreader.php
xmlrpc.php
xmlwriter.php
xsl.php
yaml.php
Expand Down

0 comments on commit 9a0df30

Please sign in to comment.