• This project
    • Loading...
  • Sign in

Satini_pvduc / daito-utils

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • daito-utils
  • src
  • StringUtils.php
  • RESAZIP-PC\resaz's avatar
    up · 927efdcb
    927efdcb Browse Files
    RESAZIP-PC\resaz authored 2026-02-20 21:51:57 +0700
StringUtils.php 224 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
<?php
namespace Daito\Lib;

class StringUtils {
    public static function toUpper($text){
        return strtoupper("$text xxx...");
    }
    public static function toLower($text){
        return strtolower($text);
    }
}