0

私は一生懸命努力していますが、それを行うことができません.. PHPの専門家はそこに知識を共有しています..

以下のテキスト ファイル (sample.txt) があります。

<Module>
title = "this is title" thumb ="http://www.example.com/thumb.jpg"
description ="this is the description of the title" 
screen ="http://www.example.com/screen.jpg"
<Content type="html" view="canvas">
<![CDATA[ 
<div>Hello world Canvas view</div>
<script type="text/javascript">

function goToView(dest) {
  var supported_views = gadgets.views.getSupportedViews();
  gadgets.views.requestNavigateTo(supported_views[dest]);
};
</script>
 <a href="javascript:goToView('home')" >Go to home view</a><br><br>
 ]]> 
 </Content>
 </Module>

今、phpを使用して上記のsample.txtファイルを読み取り、表示またはデータベースに保存したいと考えています。

例えば

this is title - should go in $title variable
http://www.example.com/thumb.jpg  - should go in $thumb variable 
i just want only these four variables (title, thumb, description & screen) 

上記の 4 つの変数 (タイトル、サム、説明、画面) はすべて、別の行または同じ行に配置できます。

専門家が私を助けてくれますか?私はたくさん試しましたが、運がありません...

前もって感謝します..

4

1 に答える 1

2

変数を ini ファイルに保存すると、次のようになります。sample.ini

title = "this is title" 
thumb = "http://www.example.com/thumb.jpg"
description = "this is the description of the title" 
screen = "http://www.example.com/screen.jpg"

を使用して変数を取得できますparse_ini_file()

$vars = parse_ini_file('sample.ini');
echo $vars['title'];
echo $vars['thumb'];
// etc.
于 2012-06-15T09:27:36.073 に答える