• 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
  • DaitoString.php
  • RESAZIP-PC\resaz's avatar
    up · cfbd8d2a
    cfbd8d2a Browse Files
    RESAZIP-PC\resaz authored 2026-02-20 21:58:10 +0700
DaitoString.php 215 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
<?php
namespace Daito\Lib;

class DaitoString {
    public static function toUpper($text){
        return strtoupper($text);
    }
    public static function toLower($text){
        return strtolower($text);
    }
}