wiki/content/20201113115424-str_starts_with.md

21 lines
381 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-29 18:27:12 +00:00
date: 2020-11-13
2024-05-06 20:40:05 +00:00
id: 264796d2-49ae-42fc-9d9d-aeea84343ef1
title: str~startswith~()
---
# Description
Checks if string starts with other string. Opposite of
[str~endswith~()](20201113115452-str_ends_with). See RFC[^1].
# Syntax
``` php
str_starts_with('haystack', 'hay') // true
```
# Footnotes
[^1]: <https://wiki.php.net/rfc/add_str_starts_with_and_ends_with_functions>