G
G
godsplane2020-05-02 15:54:51
PHP
godsplane, 2020-05-02 15:54:51

How to make the first letter lowercase?

I'm trying to make the first letter of $tag->name lowercase. Tried like this

$name = sprintf($tag->name);
var_dump($name);
if ($video) {
  ?>
    <h2>Видео
      <?echo strtolower($name)?>
    </h2>
    <?
} else {
  
}

But nothing happened. Did I make it a string?
var_dump($name) gives this:
string(10) "Кухни"

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
IvanMogilev, 2020-05-02
@IvanMogilev

<?php
$name='Кухни';
var_dump(mb_strtolower($name));

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question