“Первая буква капитала каждого слова в PHP” Ответ

Строка первая буква верхняя php php


<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>

Testy Teira

php ucfirst все слова

$foo = 'hello world!';
$foo = ucwords($foo);             // Hello World!

$bar = 'HELLO WORLD!';
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!

//With custom delimiter
$foo = 'hello|world!';
$bar = ucwords($foo);             // Hello|world!

$baz = ucwords($foo, "|"); 
Matteoweb

Первый персонаж верхний php

ucwords("hello world"); // Hello World
ucfirst("hello world"); // Hello world
Zany Zebra

PHP прописное каждое слово

$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good
Grepper

Первая буква капитала каждого слова в PHP

$clientname = "ankur prajapati";
ucwords($clientname);//Ankur Prajapati
ucfirst($clientname);//Ankur Prajapati

$clientname = "ANKUR PRAJAPATI";
ucfirst(strtolower($clientname));//Ankur Prajapati
Ankur

Ответы похожие на “Первая буква капитала каждого слова в PHP”

Вопросы похожие на “Первая буква капитала каждого слова в PHP”

Больше похожих ответов на “Первая буква капитала каждого слова в PHP” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования