语篇到所有格
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了语篇到所有格相关的知识,希望对你有一定的参考价值。
Transforms string to it's possessive form and return it's original case form.
/* * Transform text to show ownership e.g Arvi's, Jess' */ public function to_possessive($string) { $possessive_form = ($last_letter == $letter_s) ? $string."'" : $string."'".$letter_s; return $possessive_form; }
以上是关于语篇到所有格的主要内容,如果未能解决你的问题,请参考以下文章