• Categories
    • PHP
    • phpMyAdmin
    • PHPMailer
    • FFMpeg
    • PHPEXcel
    • PHPDoc
    • PHPUnit
    • CakePHP
    • CakePHP 2.0
    • Cake PHP 2.1
    • CakePHP Model
    • Facebook PHP SDK
    • composer-php
    • PHP 7
    • PHP GD
    All Categories
  • About

How to convert the int value to inch in PHP [closed]

php


PHP Snippet 1:

function cm2inches($cm)
{
     $inches = $cm/2.54;
     $inches = $inches%12;
     return sprintf('%d ins', $inches);
}
echo cm2inches(162);

PHP Snippet 2:

3 ins

Related Snippets

how to display a view on laravel 8 and not have a 404 NOT FOUND page?

Session timeout in Yii2

Laravel Multi-language routes without prefix

Laravel Delete and Update

Add rows to Single product Additional information table in WooCommerce 3.6

Move a child array to parent array and change parent/child name

Valet, Xdebug after reboot Big Sur not working

Google Gmail API - How to login programatically?

how do i retrieve and display the alt text of an image in wordpress?

Debugging Stripe Webhook Event

Do I need to install `fxp/composer-asset-plugin` if I'm not doing front-end development

How to create laravel storage symbolic link for production or sub domain system?

Is it possible to change the table name in the migration file-laravel

PHP: Telegram Bot: Insert line break to text message

Using spatie/media-library, how to rename a collection of uploaded files?

About Contact Privacy policy Terms and conditions