如何使用 php 拆分字符串中的单词并存储到两个不同的变量 $str1 , $str2
Input String : The encyclopedia project Wikipedia is the most famous wiki on the public web, but there are many sites running many different kinds of wiki software. Wikis can serve many different purposes both public and private, including knowledge management, notetaking, community websites and intranets. Some permit control over different functions (levels of access). For example, editing rights may permit changing, adding or removing material. Others may permit access without enforcing access control. Other rules may also be imposed to organize content.<div class="new">Some Text Here! </div>
Output String :
$str1 : The encyclopedia project Wikipedia is the most famous wiki on the public web, but there are many sites running many different kinds of wiki software. Wikis can serve many different purposes both public and private, including knowledge management, notetaking, community websites and intranets. Some permit control over different functions (levels of access). For example, editing rights may permit changing, adding or removing material. Others may permit access without enforcing access control. Other rules may also be imposed to organize content.
$str2 : <div class="new">Some Text Here! </div>
谢谢