PHP code example of boesing / psalm-plugin-stringf
1. Go to this page and download the library: Download boesing/psalm-plugin-stringf library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
boesing / psalm-plugin-stringf example snippets
printf('%s', 1);
printf('%d', 'foo');
printf('Some text without any placeholder');
sprintf('Some text without any placeholder');