• 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
    update · a86105d2
    a86105d2 Browse Files
    RESAZIP-PC\resaz authored 2026-02-20 21:45:28 +0700
StringUtils.php 221 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);
    }
}