Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional features #14

Merged
merged 2 commits into from
May 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ I'd also love PRs to add translations. Maybe contact me first or open an issue i

I am manually curating the list of features and related content here. And I'd love for people to help by PR-ing additions.

Feautures to add to the list will need to meet the following criteria:
Features to add to the list will need to meet the following criteria:

* They were added, deprecated or removed in PHP version 5.6 or greater.

Expand Down
49 changes: 49 additions & 0 deletions features.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,5 +542,54 @@ const features = [
url: 'https://www.php.net/manual/en/function.get-magic-quotes-gpc.php'
}
]
},
{
name: 'FILTER_FLAG_SCHEME_REQUIRED',
description: 'Filter flag for `filter_var()`',
keywords: [
'filter', 'constant', 'deprecated', 'removed'
],
added: '0.0',
deprecated: '7.3.0',
removed: '8.0',
resources: [
{
name: 'Validate filters',
url: 'https://www.php.net/manual/en/filter.filters.validate.php'
}
]
},
{
name: 'FILTER_FLAG_HOST_REQUIRED',
description: 'Filter flag for `filter_var()`',
keywords: [
'filter', 'constant', 'deprecated', 'removed'
],
added: '0.0',
deprecated: '7.3.0',
removed: '8.0',
resources: [
{
name: 'Validate filters',
url: 'https://www.php.net/manual/en/filter.filters.validate.php'
}
]
},
{
name: 'Fibers (Fiber class, Fiber exceptions)',
description: 'Lightweight concurrency for PHP',
keywords: [
'class', 'types', 'new feature', 'functionality', 'concurrency'
],
added: '8.1',
resources: [
{
name: 'PHP.Watch Introduction to Fibers',
url: 'https://php.watch/versions/8.1/fibers'
}, {
name: 'PHP Documentation',
url: 'https://www.php.net/manual/en/language.fibers.php'
}
]
}
]