假设我有以下xml内容:
<?php
$file = $_FILES['file'];
$tmp = $file['tmp_name'];
$imageInfo = getimagesize($tmp);
echo '<pre>'; var_dump($imageInfo); echo '</pre>';
我创建了以下vb.net类:
<VirtualHost *:80>
ServerName my-app
DocumentRoot /path/to/app
<Directory /path/to/app>
RewriteEngine on
# Don't rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Rewrite everything else to index.html to allow html5 state links
RewriteRule ^ index.html [L]
</Directory>
</VirtualHost>
所以我能够得到&#34; n&#34;价值和&#34;类型&#34;。我的问题是:我怎样才能获得数组内容,我的意思是,价值&#34; 1 22 3&#34;? 在Java中,我会使用&#34; @ xmlvalue&#34;但是在vb.net中没有类似的东西。 有人能帮帮我吗?非常感谢!
答案 0 :(得分:0)
<XmlText()>
Public arrayContent As String
String.Split
将帮助您将1 22 3
转移到字符串数组,并Enumerable.Select
将帮助您从字符串数组中创建整数数组。